Skip to content

Commit

Permalink
fix(admin-settings): user filters after page reload
Browse files Browse the repository at this point in the history
Fixes an issue where applied user filters would not be visible after page reload.
  • Loading branch information
Jannik Stehle committed Sep 26, 2024
1 parent 4504b08 commit 6ebd926
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changelog/unreleased/bugfix-user-filters-after-page-reload
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: User filters after page reload

We've fixed an issue where applied user filters would not be visible after page reload.

https://github.com/owncloud/web/issues/11604
https://github.com/owncloud/web/pull/11666
2 changes: 2 additions & 0 deletions packages/web-app-admin-settings/src/views/Users.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<span v-text="$gettext('Filter:')" />
</div>
<item-filter
v-if="groups.length"
:allow-multiple="true"
:filter-label="$gettext('Groups')"
:filterable-attributes="['displayName']"
Expand All @@ -64,6 +65,7 @@
</template>
</item-filter>
<item-filter
v-if="roles.length"
:allow-multiple="true"
:filter-label="$gettext('Roles')"
:filterable-attributes="['displayName']"
Expand Down

0 comments on commit 6ebd926

Please sign in to comment.