From a39578e1a4bfc13895aea92979d3b7d982b0c3f9 Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Tue, 18 Feb 2020 22:09:58 +0100 Subject: [PATCH] Add iseditable to interface --- projects/common/src/fm/models/item.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/common/src/fm/models/item.ts b/projects/common/src/fm/models/item.ts index c6b46f4..3e5dd27 100644 --- a/projects/common/src/fm/models/item.ts +++ b/projects/common/src/fm/models/item.ts @@ -5,6 +5,7 @@ export interface IItem extends IListItem { geometry?: any; tags:string[], data?:any + isEditable:boolean; } export class Item implements IItem {