Fix creating new collections

This commit is contained in:
rijkvanzanten
2020-07-29 17:34:08 -04:00
parent 8a24ef4eb8
commit cc57f3e713
5 changed files with 130 additions and 185 deletions

View File

@@ -1,3 +1,5 @@
import { Field } from './field';
export type Collection = {
collection: string;
note: string | null;
@@ -5,4 +7,5 @@ export type Collection = {
single: boolean;
icon: string | null;
translation: Record<string, string>;
fields?: Field[];
};