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

pull/61/head
Rahul Shirsat 2021-09-27 13:36:13 +05:30 committed by Akshay Joshi
parent 31339737a6
commit d8d88b948a
1 changed files with 1 additions and 1 deletions

View File

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