Skip to content

Commit

Permalink
fix list cell click bug (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarthee authored Jan 3, 2024
1 parent e15a93f commit 405f17a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions assets/data_table/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ const headerIcons = {
number: GridColumnIcon.HeaderNumber,
uri: GridColumnIcon.HeaderUri,
date: GridColumnIcon.HeaderDate,
list: GridColumnIcon.HeaderNumber,
list: GridColumnIcon.HeaderArray,
};

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

const theme = {
Expand Down
Loading

0 comments on commit 405f17a

Please sign in to comment.