Skip to content

Commit

Permalink
fix: 정렬 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hynseok committed Sep 2, 2024
1 parent 7426abe commit 5754ec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/DataTableHeaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const NOTICE_TABLE_HEADERS: DataTableHeaderProps[] = [

export const APPLICATION_TABLE_HEADERS: DataTableHeaderProps[] = [
{ label: "순번", widthPercentage: 7, sort: true, selector: "id" },
{ label: "이름", widthPercentage: 15, sort: true, selector: "name" },
{ label: "이름", widthPercentage: 15, sort: true, selector: "user.name" },
{ label: "소속", widthPercentage: 15, sort: false, selector: "division" },
{ label: "직책", widthPercentage: 7, sort: false, selector: "position" },
{ label: "권한", widthPercentage: 7, sort: false, selector: "userType" },
Expand Down
1 change: 1 addition & 0 deletions src/types/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ export interface PagedApiResponse<T> {
export interface PagedApiRequestParams {
page?: number;
size?: number;
sort?: string;
}

0 comments on commit 5754ec7

Please sign in to comment.