mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Fix typing in story
This commit is contained in:
@@ -31,13 +31,13 @@ export const basic = () =>
|
||||
const relationsStore = useRelationsStore(req);
|
||||
|
||||
// eslint-disable-next-line
|
||||
fieldsStore.state = fields;
|
||||
fieldsStore.state = fields as any;
|
||||
|
||||
// eslint-disable-next-line
|
||||
collectionsStore.state = collections;
|
||||
collectionsStore.state = collections as any;
|
||||
|
||||
// eslint-disable-next-line
|
||||
relationsStore.state = relations;
|
||||
relationsStore.state = relations as any;
|
||||
|
||||
const value = ref<string>('{{first_name}} ({{ last_name }})');
|
||||
return { value };
|
||||
|
||||
Reference in New Issue
Block a user