mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-02 10:56:00 +02:00
refactor(frontend): rename pizzax fields
This commit is contained in:
@@ -48,7 +48,7 @@ const { widgetProps, configure } = useWidgetPropsManager(name,
|
||||
emit,
|
||||
);
|
||||
|
||||
const text = ref<string | null>(store.state.memo);
|
||||
const text = ref<string | null>(store.s.memo);
|
||||
const changed = ref(false);
|
||||
let timeoutId;
|
||||
|
||||
@@ -63,7 +63,7 @@ const onChange = () => {
|
||||
timeoutId = window.setTimeout(saveMemo, 1000);
|
||||
};
|
||||
|
||||
watch(() => store.reactiveState.memo, newText => {
|
||||
watch(() => store.r.memo, newText => {
|
||||
text.value = newText.value;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user