mirror of
https://github.com/directus/directus.git
synced 2026-02-15 14:05:13 -05:00
hide folder-collections in permissions settings (#8939)
This commit is contained in:
@@ -97,7 +97,9 @@ export default defineComponent({
|
||||
const collectionsStore = useCollectionsStore();
|
||||
|
||||
const regularCollections = computed(() =>
|
||||
collectionsStore.collections.filter((collection) => collection.collection.startsWith('directus_') === false)
|
||||
collectionsStore.collections.filter(
|
||||
(collection) => collection.collection.startsWith('directus_') === false && collection.schema
|
||||
)
|
||||
);
|
||||
|
||||
const systemCollections = computed(() =>
|
||||
|
||||
Reference in New Issue
Block a user