Fix typing in story

This commit is contained in:
rijkvanzanten
2020-06-08 11:41:15 -04:00
parent ac264b3ff0
commit 850937f797

View File

@@ -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 };