diff --git a/var/www/templates/hunter/tracker_show.html b/var/www/templates/hunter/tracker_show.html
index 38586517..21e7aafa 100644
--- a/var/www/templates/hunter/tracker_show.html
+++ b/var/www/templates/hunter/tracker_show.html
@@ -447,12 +447,13 @@
Filter Objects:
const lineHeight = parseFloat(window.getComputedStyle(textElement).lineHeight);
var maxLines = 30;
const maxHeight = lineHeight * maxLines;
-
- // Apply initial truncation
- textElement.style.maxHeight = maxHeight + 'px';
+
if (textElement.getBoundingClientRect().height < maxHeight) {
+ textElement.style.maxHeight = '100%'
btn_read_more.hide();
} else {
+ // Apply initial truncation
+ textElement.style.maxHeight = maxHeight + 'px';
btn_read_more.on("click", function() {
if (btn_read_more.text() === "Show more") {
textElement.style.maxHeight = 'none';