From 7f30b3291a148c8322d6586ee066fe15e769264a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 13 May 2025 17:54:12 +0300 Subject: [PATCH] fix unrendered statuses breaking UI --- src/components/status/status.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/status/status.js b/src/components/status/status.js index 37b00a1eb..7ee2632bd 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -536,6 +536,7 @@ const Status = { this.controlledToggleThreadDisplay() }, scrollIfHighlighted (highlightId) { + if (this.$el.getBoundingClientRect == null) return const id = highlightId if (this.status.id === id) { const rect = this.$el.getBoundingClientRect()