mirror of
https://github.com/directus/directus.git
synced 2026-01-30 22:37:54 -05:00
Render null items correctly
This commit is contained in:
@@ -215,7 +215,7 @@ export default defineComponent({
|
||||
},
|
||||
});
|
||||
|
||||
items.value = response.data.data[props.field];
|
||||
items.value = response.data.data[props.field] || [];
|
||||
} catch (err) {
|
||||
error.value = err;
|
||||
} finally {
|
||||
|
||||
Reference in New Issue
Block a user