Verified Commit 6ad0fdfe authored by Marek Veselý's avatar Marek Veselý
Browse files

fix: add TickOrCross for isImported in UserTable

parent 4266f8c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ export const USER_COLUMNS: UserColumn[] = [
    id: 'imported',
    name: 'Imported',
    display: false,
    renderValue: (user: IUser) => user.isImported,
    renderValue: (user: IUser) => <TickOrCross value={user.isImported} />,
    sortingFunction: (a, b) =>
      booleanSortingFunction(a.isImported, b.isImported),
  },