Skip to content

Commit

Permalink
Add CellKind list (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristine Guadelupe authored Jan 2, 2024
1 parent 9662d51 commit 3b16356
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
6 changes: 4 additions & 2 deletions assets/data_table/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@ const headerIcons = {
number: GridColumnIcon.HeaderNumber,
uri: GridColumnIcon.HeaderUri,
date: GridColumnIcon.HeaderDate,
list: GridColumnIcon.HeaderNumber,
};

const cellKind = {
text: GridCellKind.Text,
number: GridCellKind.Number,
uri: GridCellKind.Uri,
date: GridCellKind.Text,
list: GridCellKind.Number,
};

const theme = {
Expand Down Expand Up @@ -95,7 +97,7 @@ function App({ ctx, data }) {
id: id,
type: column.type,
icon: headerIcons[column.type] || GridColumnIcon.HeaderString,
hasMenu: true,
hasMenu: column.type !== "list",
summary: summary,
};
});
Expand Down Expand Up @@ -568,7 +570,7 @@ function SearchButton({ toggleSearch }) {
aria-label="search"
onClick={toggleSearch}
>
<RiSearch2Line className="search-icon"/>
<RiSearch2Line className="search-icon" />
</button>
</span>
);
Expand Down
Loading

0 comments on commit 3b16356

Please sign in to comment.