From 04d94fc6806b300ce3e7a96cc7aa26a9bfd54595 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 20 Aug 2026 23:56:26 +0300 Subject: [PATCH 1/2] =?UTF-8?q?fix=20quote=20display=20in=20repr=C3=B6?= =?UTF-8?q?=C3=B6ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/status/status.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index d807b64ff..8230b0917 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -432,13 +432,13 @@ const Status = { return useInstanceCapabilitiesStore().editingAvailable }, quoteId() { - return this.status.quote_id + return this.mainStatus.quote_id }, quoteUrl() { - return this.status.quote_url + return this.mainStatus.quote_url }, quoteVisible() { - return this.status.quote_visible + return this.mainStatus.quote_visible }, quoteExpanded() { return !this.inQuote From a9c0edc92e360ba51afcb11c5b07f0256d8973c4 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 21 Aug 2026 00:12:14 +0300 Subject: [PATCH 2/2] restore clearTimeline --- src/stores/timelines.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/stores/timelines.js b/src/stores/timelines.js index df1c41a69..34fc57f79 100644 --- a/src/stores/timelines.js +++ b/src/stores/timelines.js @@ -149,6 +149,16 @@ export const useTimelinesStore = defineStore('timelines', { this[timelineName] = emptyTl(timelineName) }, + clearTimeline(timelineName) { + const timeline = this[timelineName] + + timeline.order = [] + timeline.statusIds = new Set() + timeline.visibleStatusIds = new Set() + timeline.newStatusCount = 0 + timeline.maxId = '' + timeline.minId = '' + }, activatePersistents() { TIMELINES.forEach((name) => { if (this[name].persistent) {