diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-11-04 17:29:38 +0100 |
---|---|---|
committer | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-11-04 17:29:38 +0100 |
commit | f1d9bf460d550308211982c83ed6d7e4fdd06507 (patch) | |
tree | bf1a22e3ce5adc61c28ff35939ae4ba4bc78afdc /sdnr/wt/odlux/framework/src | |
parent | 9b1055626a47b3aaabe0d9151d4c4d27598c1dad (diff) |
Update material-ui and material-icons version
Update material-ui and material-icons to latest version
Issue-ID: CCSDK-2884
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: Ic20e63f12e2ccaf985e43c99009fff9938a9fd02
Diffstat (limited to 'sdnr/wt/odlux/framework/src')
-rw-r--r-- | sdnr/wt/odlux/framework/src/components/material-table/tableToolbar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/framework/src/components/material-table/tableToolbar.tsx b/sdnr/wt/odlux/framework/src/components/material-table/tableToolbar.tsx index a4080b51b..59dc49c50 100644 --- a/sdnr/wt/odlux/framework/src/components/material-table/tableToolbar.tsx +++ b/sdnr/wt/odlux/framework/src/components/material-table/tableToolbar.tsx @@ -108,7 +108,7 @@ class TableToolbarComponent extends React.Component<ITableToolbarComponentProps, <div className={classes.actions}> {this.props.customActionButtons ? this.props.customActionButtons.map((action, ind) => ( - <Tooltip key={`custom-action-${ind}`} title={action.tooltip}> + <Tooltip key={`custom-action-${ind}`} title={action.tooltip || ''}> <IconButton aria-label={buttonPrefix + `custom-action-${ind}`} onClick={() => action.onClick()}> <action.icon /> </IconButton> |