fix show replies toggle not saving

This commit is contained in:
Freeplay 2023-05-15 18:13:59 -04:00
parent 1cc7c3f8dd
commit b38607a694
2 changed files with 14 additions and 1 deletions

View File

@ -240,6 +240,20 @@ const useSystemFont = ref(localStorage.getItem("useSystemFont") != null);
const profile = reactive({
showTimelineReplies: $i?.showTimelineReplies,
});
watch(
() => profile,
() => {
save();
},
{
deep: true,
}
);
function save() {
os.apiWithDialog("i/update", {
showTimelineReplies: !!profile.showTimelineReplies,
});
}
async function reloadAsk() {
const { canceled } = await os.confirm({

View File

@ -237,7 +237,6 @@ function save() {
isBot: !!profile.isBot,
isCat: !!profile.isCat,
speakAsCat: !!profile.speakAsCat,
showTimelineReplies: !!profile.showTimelineReplies,
});
}