[ADF-5231] The protected flag for properties should not be editable (#7056)

This commit is contained in:
Dharan
2021-05-25 17:31:22 +05:30
committed by GitHub
parent 65cbd570fb
commit 4b3a7f41f0
3 changed files with 46 additions and 2 deletions

View File

@@ -24,4 +24,8 @@ export interface Property {
mandatory: boolean;
multiValued: boolean;
editable?: boolean;
protected?: boolean;
enforced?: boolean;
indexed?: boolean;
url?: string;
}