RED-10512: added allow signal writes back.

This commit is contained in:
Nicoleta Panaghiu 2024-12-09 10:52:47 +02:00
parent db7d1f24f5
commit e0418c792d

View File

@ -90,11 +90,14 @@ export class FileAttributeComponent extends BaseFormComponent implements OnDestr
);
this.#subscriptions.add(sub2.subscribe());
effect(() => {
if (this.#shouldClose()) {
this.close();
}
});
effect(
() => {
if (this.#shouldClose()) {
this.close();
}
},
{ allowSignalWrites: true },
);
}
get isDate(): boolean {