From 9c9a73e4667677fac4d79b1cd173c3e832e2c307 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Wed, 14 Sep 2022 19:15:40 +0200 Subject: [PATCH] chore(nc-gui): update Roles type --- packages/nc-gui/lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/lib/types.ts b/packages/nc-gui/lib/types.ts index 74f2a6e4e0..ac8d3fc562 100644 --- a/packages/nc-gui/lib/types.ts +++ b/packages/nc-gui/lib/types.ts @@ -31,7 +31,7 @@ export interface Field { system?: boolean } -export type Roles = Record | string +export type Roles = Record | string export type Filter = FilterType & { status?: 'update' | 'delete' | 'create'; parentId?: string; readOnly?: boolean }