diff options
author | 2025-02-09 12:23:16 +0100 | |
---|---|---|
committer | 2025-02-09 12:23:16 +0100 | |
commit | 128fcc871cc61986f545c9c14356a092fdc3fc8e (patch) | |
tree | fe3391f9abc2848a0c5a521aa4cf6d39034cdd89 /web/source | |
parent | [chore/frontend] Tweak display of "edited" in web UI a bit (#3766) (diff) | |
download | gotosocial-128fcc871cc61986f545c9c14356a092fdc3fc8e.tar.xz |
[bugfix] Fix missing `hasChanged` func (#3764)
Diffstat (limited to 'web/source')
-rw-r--r-- | web/source/settings/lib/form/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/source/settings/lib/form/index.ts b/web/source/settings/lib/form/index.ts index 878b7c79b..047fdf5aa 100644 --- a/web/source/settings/lib/form/index.ts +++ b/web/source/settings/lib/form/index.ts @@ -103,6 +103,7 @@ function value<T>(name: string, initialValue: T) { name, Name: "", value: initialValue, + hasChanged: () => true, }; } |