Skip to content

Commit

Permalink
Merge pull request #10 from gisce/fix-background-color-status
Browse files Browse the repository at this point in the history
Fix background color badge row selected
  • Loading branch information
mguellsegarra authored Jul 17, 2023
2 parents c0dd116 + df8edd8 commit 1b11f78
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gisce/react-formiga-table",
"version": "0.8.0",
"version": "0.8.1",
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "npm run build",
Expand Down
1 change: 1 addition & 0 deletions src/components/Rows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ function getRowComponent({
getExpandableStatusForRow={getExpandableStatusForRow}
onExpandableIconClicked={onExpandableIconClicked}
level={level}
rowIsSelected={rowIsSelected}
/>
</>
}
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Table.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export const Status: ComponentStoryObj<typeof Table> = {
alert("double clicked record" + JSON.stringify(record));
},
sorter: { id: "name", desc: true },
readonly: true,
readonly: false,
onChangeSort: (sorter: Sorter | undefined) => {
console.log("onChangeSort: ", sorter);
},
Expand Down

0 comments on commit 1b11f78

Please sign in to comment.