summaryrefslogtreecommitdiff
path: root/web/source
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-02-09 12:23:16 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-09 12:23:16 +0100
commit128fcc871cc61986f545c9c14356a092fdc3fc8e (patch)
treefe3391f9abc2848a0c5a521aa4cf6d39034cdd89 /web/source
parent[chore/frontend] Tweak display of "edited" in web UI a bit (#3766) (diff)
downloadgotosocial-128fcc871cc61986f545c9c14356a092fdc3fc8e.tar.xz
[bugfix] Fix missing `hasChanged` func (#3764)
Diffstat (limited to 'web/source')
-rw-r--r--web/source/settings/lib/form/index.ts1
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,
};
}