Fixed an issue where Schema icon is not visible in the drop-down of General tab. Fixes #6806
parent
31339737a6
commit
d8d88b948a
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue