diff options
author | mrjive <mrjive@mrjive.it> | 2018-01-29 16:37:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 16:37:34 +0100 |
commit | 7a377e72e79eae5184f8fb9cf6f93afd48279699 (patch) | |
tree | 2db2413d687a78f62b323c85e8c5eef66b81cf62 | |
parent | edf6ad9eda323f6e04823b8c110d21d82d519d32 (diff) | |
download | volse-hubzilla-7a377e72e79eae5184f8fb9cf6f93afd48279699.tar.gz volse-hubzilla-7a377e72e79eae5184f8fb9cf6f93afd48279699.tar.bz2 volse-hubzilla-7a377e72e79eae5184f8fb9cf6f93afd48279699.zip |
small details
Just changed the icon from sort to filter (it's what it does, it filters) and changed id to class in connection-wrapper clearfix (line 28)
-rwxr-xr-x | view/tpl/connections.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/connections.tpl b/view/tpl/connections.tpl index cfb7ae67e..32973353e 100755 --- a/view/tpl/connections.tpl +++ b/view/tpl/connections.tpl @@ -5,7 +5,7 @@ <i class="fa fa-search"></i> {{$label}} </button> <button type="button" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="{{$sort}}"> - <i class="fa fa-sort"></i> + <i class="fa fa-filter"></i> </button> <div class="dropdown-menu dropdown-menu-right"> {{foreach $tabs as $menu}} @@ -25,7 +25,7 @@ </div> </form> </div> - <div id="connections-wrapper clearfix"> + <div class="connections-wrapper clearfix"> {{foreach $contacts as $contact}} {{include file="connection_template.tpl"}} {{/foreach}} |