Skip to content
Snippets Groups Projects
Unverified Commit 3c09dda6 authored by Shiqi Mei's avatar Shiqi Mei Committed by GitHub
Browse files

Regression: Elements select & multiSelect not rendered correctly in the App Settings (#19005)

parent 92876982
No related branches found
Tags 6.1.7
No related merge requests found
...@@ -46,6 +46,7 @@ function AppSetting({ appSetting, onChange, value, ...props }) { ...@@ -46,6 +46,7 @@ function AppSetting({ appSetting, onChange, value, ...props }) {
type, type,
i18nLabel, i18nLabel,
i18nDescription, i18nDescription,
values,
} = appSetting; } = appSetting;
const label = (i18nLabel && tApp(i18nLabel)) || (id || tApp(id)); const label = (i18nLabel && tApp(i18nLabel)) || (id || tApp(id));
...@@ -58,6 +59,7 @@ function AppSetting({ appSetting, onChange, value, ...props }) { ...@@ -58,6 +59,7 @@ function AppSetting({ appSetting, onChange, value, ...props }) {
value={value} value={value}
onChangeValue={onChange} onChangeValue={onChange}
_id={id} _id={id}
values={values}
{...props} {...props}
/>; />;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment