fix textarea not updating properly
fixes https://akkoma.dev/FoundKeyGang/FoundKey/issues/54
This commit is contained in:
parent
db6907a6fa
commit
1fffcff4bc
2 changed files with 3 additions and 2 deletions
|
@ -80,4 +80,5 @@
|
||||||
- 0f6d94f1e7e1f58cfbf8d07e5f835f8de626842e: backend: improve mutes and blocks
|
- 0f6d94f1e7e1f58cfbf8d07e5f835f8de626842e: backend: improve mutes and blocks
|
||||||
- e2bf2715a6462ed377b033956d65260157f042ea: fix spelling error
|
- e2bf2715a6462ed377b033956d65260157f042ea: fix spelling error
|
||||||
- 09a7eabda137e77f81ab31f65d69329670693c8d: backend: fix lint "no-throw-literal"
|
- 09a7eabda137e77f81ab31f65d69329670693c8d: backend: fix lint "no-throw-literal"
|
||||||
-
|
- 4fbe2e065e75ed3e5b4dfdfd4be3baa03cc447c3: client: fix lint "quotes"
|
||||||
|
- 585e4f5c42cfafb6cdf7eb601ab435d6a4d85a96: fix textarea not updating properly
|
||||||
|
|
|
@ -137,7 +137,7 @@ export default defineComponent({
|
||||||
v.value = newValue;
|
v.value = newValue;
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(v, newValue => {
|
watch($$(v), () => {
|
||||||
if (!props.manualSave) {
|
if (!props.manualSave) {
|
||||||
if (props.debounce) {
|
if (props.debounce) {
|
||||||
debouncedUpdated();
|
debouncedUpdated();
|
||||||
|
|
Loading…
Reference in a new issue