diff --git a/web/src/UserListPage.js b/web/src/UserListPage.js index 984751c7e0be..c4f8d308cbf3 100644 --- a/web/src/UserListPage.js +++ b/web/src/UserListPage.js @@ -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("|");