From 562d00ef6d4478533695ecbdb69d12d711dec748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grand?= <francois.grand@inrae.fr> Date: Fri, 27 Jan 2023 14:29:33 +0100 Subject: [PATCH] fix: compilation failure (missing FieldSet.hasProperty()) refs #592 --- src/app/formulaire/elements/fieldset.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/formulaire/elements/fieldset.ts b/src/app/formulaire/elements/fieldset.ts index 2c130b65f..3637d892d 100644 --- a/src/app/formulaire/elements/fieldset.ts +++ b/src/app/formulaire/elements/fieldset.ts @@ -365,6 +365,10 @@ export class FieldSet extends FormulaireElement implements IProperties { // interface IProperties + public hasProperty(key: string): boolean { + return this._nub.hasProperty(key); + } + /** * list of properties keys */ -- GitLab