fix show replies toggle not saving
This commit is contained in:
parent
1cc7c3f8dd
commit
b38607a694
|
@ -240,6 +240,20 @@ const useSystemFont = ref(localStorage.getItem("useSystemFont") != null);
|
||||||
const profile = reactive({
|
const profile = reactive({
|
||||||
showTimelineReplies: $i?.showTimelineReplies,
|
showTimelineReplies: $i?.showTimelineReplies,
|
||||||
});
|
});
|
||||||
|
watch(
|
||||||
|
() => profile,
|
||||||
|
() => {
|
||||||
|
save();
|
||||||
|
},
|
||||||
|
{
|
||||||
|
deep: true,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
function save() {
|
||||||
|
os.apiWithDialog("i/update", {
|
||||||
|
showTimelineReplies: !!profile.showTimelineReplies,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async function reloadAsk() {
|
async function reloadAsk() {
|
||||||
const { canceled } = await os.confirm({
|
const { canceled } = await os.confirm({
|
||||||
|
|
|
@ -237,7 +237,6 @@ function save() {
|
||||||
isBot: !!profile.isBot,
|
isBot: !!profile.isBot,
|
||||||
isCat: !!profile.isCat,
|
isCat: !!profile.isCat,
|
||||||
speakAsCat: !!profile.speakAsCat,
|
speakAsCat: !!profile.speakAsCat,
|
||||||
showTimelineReplies: !!profile.showTimelineReplies,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue