aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-09-18 19:59:33 +0000
committerMario <mario@mariovavti.com>2024-09-18 19:59:33 +0000
commita7c51f5d654cca2a3c637006de09836ee3f9dfc4 (patch)
tree5f31b61efd284816c5f4b4edbf20061b377146e4
parent5309c032dbda6f69c2d8f52de1e37a28fa24f6e9 (diff)
downloadvolse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.tar.gz
volse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.tar.bz2
volse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.zip
display title only for toplevel items
-rw-r--r--view/tpl/conv_item.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index 743dedf9a..b3e927d3f 100644
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -18,7 +18,7 @@
{{$item.event}}
</div>
{{/if}}
- {{if $item.title && !$item.event}}
+ {{if $item.title && $item.toplevel && !$item.event}}
<div class="p-2{{if $item.is_new}} bg-primary text-white{{/if}} wall-item-title h3{{if !$item.photo}} rounded-top{{/if}}" id="wall-item-title-{{$item.id}}">
{{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})" rel="nofollow">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}}
</div>