Fix isRead not being saved on closing popups

This commit is contained in:
naskya 2023-07-08 20:15:08 +00:00
parent f7062a03fe
commit e7ccbb030d
No known key found for this signature in database
GPG key ID: 164DFF24E2D40139

View file

@ -17,7 +17,10 @@
:class="$style.gotIt"
primary
full
@click="$refs.modal.close() && markAsRead()"
@click="
$refs.modal.close();
markAsRead();
"
>{{ i18n.ts.gotIt }}</MkButton
>
</div>
@ -42,7 +45,7 @@ const { id, text, title, imageUrl, isGoodNews } = props.announcement;
const modal = shallowRef<InstanceType<typeof MkModal>>();
function markAsRead() {
os.api("i/read-announcement", { announcementId: props.announcement.id });
os.api("i/read-announcement", { announcementId: id });
}
</script>