Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
ritch committed Aug 6, 2024
1 parent c07ef1c commit b02484d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function ButtonView(props: ViewPropsType) {
});
}
if (onClick) {
onClick();
onClick(computedParams, props);
}
}}
startIcon={icon_position === "left" ? Icon : undefined}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ export default function DashboardView(props: ViewPropsType) {
const value = data?.[id];
const label = property.view?.layout?.title || value?.name || id;
const itemPath = getPath(path, id);
console.log();
const baseItemProps: BoxProps = {
sx: { padding: 0.25, position: "relative" },
};
Expand Down

0 comments on commit b02484d

Please sign in to comment.