diff options
author | Mario <mario@mariovavti.com> | 2024-08-02 15:08:27 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-08-02 15:08:27 +0000 |
commit | 7eb23aa8b8d161a74ea59bc4c6eef5357fe6b1c0 (patch) | |
tree | b7e09c97e05a0af78159e6218768949f281179a4 /Zotlabs | |
parent | c793cea2f036411086180420f9dc43071bafed4e (diff) | |
download | volse-hubzilla-7eb23aa8b8d161a74ea59bc4c6eef5357fe6b1c0.tar.gz volse-hubzilla-7eb23aa8b8d161a74ea59bc4c6eef5357fe6b1c0.tar.bz2 volse-hubzilla-7eb23aa8b8d161a74ea59bc4c6eef5357fe6b1c0.zip |
fa2bi fixes
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index bca5aa047..ae3422526 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -573,7 +573,7 @@ class ThreadItem { if(($nb_children > $visible_comments) || ($thread_level > 1)) { $result['children'][0]['comment_firstcollapsed'] = true; $result['children'][0]['num_comments'] = $comment_count_txt['label']; - $result['children'][0]['hide_text'] = sprintf( t('%s show all'), '<i class="bi bi-chevron-down"></i>'); + $result['children'][0]['hide_text'] = sprintf( t('%s show all'), '<i class="bi bi-chevron-down align-middle"></i>'); if($thread_level > 1) { $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true; } |