Fixed an issue where DB Restrictions were not visible on the server dialog. #7059

This commit is contained in:
Akshay Joshi
2024-01-01 16:24:19 +05:30
parent 5248055a01
commit fcfe7cfb7c
2 changed files with 2 additions and 1 deletions

View File

@@ -853,7 +853,7 @@ export function flattenSelectOptions(options) {
function getRealValue(options, value, creatable, formatter) {
let realValue = null;
if(options?.length == 0) {
if(options?.length == 0 && !creatable) {
return realValue;
}
if (_.isArray(value)) {