diff options
author | Mario <mario@mariovavti.com> | 2024-10-04 11:27:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-04 11:27:40 +0000 |
commit | b0a11537dec1aef1601c641d88d364918ac38ad9 (patch) | |
tree | ae47a22e17b6359c4da7b5286df9b74e515ac64e | |
parent | 4de9cb11420af855a3fe8f8db498aab42ab83e07 (diff) | |
download | volse-hubzilla-b0a11537dec1aef1601c641d88d364918ac38ad9.tar.gz volse-hubzilla-b0a11537dec1aef1601c641d88d364918ac38ad9.tar.bz2 volse-hubzilla-b0a11537dec1aef1601c641d88d364918ac38ad9.zip |
remove bogus icon id
(cherry picked from commit 04741c761aeb944c8b54472ac7e3d1e9460a8cfc)
Co-authored-by: Mario <mario@mariovavti.com>
-rw-r--r-- | view/tpl/saved_searches.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/saved_searches.tpl b/view/tpl/saved_searches.tpl index 1330bd3ad..51a19c3ae 100644 --- a/view/tpl/saved_searches.tpl +++ b/view/tpl/saved_searches.tpl @@ -4,7 +4,7 @@ <ul id="saved-search-list" class="nav nav-pills flex-column"> {{foreach $saved as $search}} <li class="nav-item nav-item-hack" id="search-term-{{$search.id}}"> - <a class="nav-link widget-nav-pills-icons" title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropfa-floppy-od-search-term-{{$search.id}}" class="bi bi-trash drop-icons" ></i></a> + <a class="nav-link widget-nav-pills-icons" title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i class="bi bi-trash drop-icons" ></i></a> <a id="saved-search-term-{{$search.id}}" class="nav-link{{if $search.selected}} active{{/if}}" href="{{$search.srchlink}}">{{$search.displayterm}}</a> </li> {{/foreach}} |