Fixed an issue where Schema icon is not visible in the drop-down of General tab. Fixes #6806

This commit is contained in:
Rahul Shirsat 2021-09-27 13:36:13 +05:30 committed by Akshay Joshi
parent 31339737a6
commit d8d88b948a

View File

@ -1389,7 +1389,7 @@ export default class TypeSchema extends BaseUISchema {
if(option && option.label.match(/^pg_/)) {
return;
}
res.push({ label: option.label, value: option.value });
res.push({ label: option.label, value: option.value, image: 'icon-schema' });
});
} else {
res = options;