fix reset filters by setting initial values into hidden text fields filters

This commit is contained in:
Рауф Латыпов 2025-04-28 15:49:42 +03:00
parent b81c7ea67b
commit d03630ff65
2 changed files with 242 additions and 14 deletions

View file

@ -0,0 +1,10 @@
import {AnalyticalScope, Behavior, TextBase, Visible} from "@webbpm/base-package";
@AnalyticalScope(TextBase)
export class TextInitialValue extends Behavior {
@Visible()
public setInitialValue(value: string): void {
const textScript = this.getScript(TextBase);
textScript.initialValue = value;
}
}