Skip to content

Commit

Permalink
Fix tag field in user list page
Browse files Browse the repository at this point in the history
  • Loading branch information
nomeguy committed Dec 19, 2023
1 parent ec53616 commit ffe2330
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions web/src/UserListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,10 @@ class UserListPage extends BaseListPage {
sorter: true,
...this.getColumnSearchProps("tag"),
render: (text, record, index) => {
if (this.state.organization?.tags?.length === 0) {
return text;
}

const tagMap = {};
this.state.organization?.tags?.map((tag, index) => {
const tokens = tag.split("|");
Expand Down

0 comments on commit ffe2330

Please sign in to comment.