Skip to content

Commit

Permalink
Merge pull request #115 from AkshataKatwal16/admin
Browse files Browse the repository at this point in the history
Issue feat: fix size of  status in usertable column
  • Loading branch information
itsvick authored Aug 9, 2024
2 parents 0bfc90b + bc6fea1 commit e733f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/tableColumns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const generateColumns = (
export const getUserTableColumns = (t: any, isMobile: boolean) => {
const configs: ColumnConfig[] = [
{ key: "name", titleKey: "FORM.NAME", width: 130 },
{ key: "status", titleKey: "FORM.STATUS", width: 100 },
{ key: "status", titleKey: "FORM.STATUS", width: 130 },
{ key: "age", titleKey: "FORM.AGE", width: 100 },
{ key: "gender", titleKey: "FORM.GENDER", width: 130 },
{ key: "mobile", titleKey: "FORM.MOBILE_NUMBER", width: 130 },
Expand All @@ -45,7 +45,7 @@ export const getUserTableColumns = (t: any, isMobile: boolean) => {
export const getTLTableColumns = (t: any, isMobile: boolean) => {
const configs: ColumnConfig[] = [
{ key: "name", titleKey: "FORM.NAME", width: 130 },
{ key: "status", titleKey: "FORM.STATUS", width: 100 },
{ key: "status", titleKey: "TABLE_TITLE.STATUS", width: 130, sortDirection: SortDirection.Ascend },
{ key: "age", titleKey: "FORM.AGE", width: 100 },
{ key: "gender", titleKey: "FORM.GENDER", width: 130 },
{ key: "state", titleKey: "FORM.STATE", width: 130, sortDirection: SortDirection.Ascend },
Expand Down

0 comments on commit e733f2f

Please sign in to comment.