mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Fix nested system-interface-options usage (#9483)
* Improve null check in list * Fix options syncing in system-interface-options
This commit is contained in:
@@ -269,7 +269,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function emitValue(value: null | any[]) {
|
||||
if (value === null || value.length === 0) {
|
||||
if (!value || value.length === 0) {
|
||||
return emit('input', null);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user