From a5d441e78e00deb3eb82936fbd4584c07a11298d Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Wed, 17 Jan 2018 09:24:35 +0100 Subject: [PATCH] dashfolders: Permissions are injected via MST so it needs to be defined as optional #10275 --- public/app/core/components/Permissions/Permissions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/Permissions/Permissions.tsx b/public/app/core/components/Permissions/Permissions.tsx index 462e5195fa7..ccd1d062e56 100644 --- a/public/app/core/components/Permissions/Permissions.tsx +++ b/public/app/core/components/Permissions/Permissions.tsx @@ -29,7 +29,7 @@ export interface IProps { error: string; newType: string; dashboardId: number; - permissions: any; + permissions?: any; isFolder: boolean; }