[bugfix] Fix missing hasChanged func (#3764)

This commit is contained in:
tobi
2025-02-09 12:23:16 +01:00
committed by GitHub
parent 05e89af4ec
commit 128fcc871c
2 changed files with 6 additions and 0 deletions

View File

@@ -103,6 +103,7 @@ function value<T>(name: string, initialValue: T) {
name,
Name: "",
value: initialValue,
hasChanged: () => true,
};
}