mirror of
https://github.com/directus/directus.git
synced 2026-01-27 12:18:25 -05:00
Prevent group edited indicator in Shared View (#11284)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-form
|
||||
v-model="item"
|
||||
v-model="edits"
|
||||
:collection="collection"
|
||||
:initial-values="item"
|
||||
:primary-key="primaryKey"
|
||||
@@ -28,9 +28,9 @@ export default defineComponent({
|
||||
setup(props) {
|
||||
const { collection, primaryKey } = toRefs(props);
|
||||
|
||||
const { item, loading } = useItem(collection, primaryKey);
|
||||
const { edits, item, loading } = useItem(collection, primaryKey);
|
||||
|
||||
return { item, loading };
|
||||
return { edits, item, loading };
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user