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/apps/configurationApp/src/components | |
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/apps/configurationApp/src/components')
-rw-r--r-- | sdnr/wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx b/sdnr/wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx index 1cec754ab..278605144 100644 --- a/sdnr/wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx +++ b/sdnr/wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx @@ -50,7 +50,7 @@ export const UiElementSelection = (props: selectionProps) => { }} > {element.options.map(option => ( - <MenuItem key={option.key} title={option.description} value={option.key}>{option.key}</MenuItem> + <MenuItem key={option.key} title={option.description || ''} value={option.key}>{option.key}</MenuItem> ))} </Select> <FormHelperText>{error}</FormHelperText> |