From 6bb35d46c144b16ea5f51028950a56bead45c598 Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Fri, 21 Nov 2025 06:52:08 +0700 Subject: [PATCH] fix: Conditionally hide bottom border in missing nodes modal on non-cloud environments (#6779) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Conditionally hide the bottom border of the missing nodes modal content when not running in cloud environment - The footer is not visible in non-cloud environments, so the bottom border was appearing disconnected ## Changes - Added conditional `border-b-1` class based on `isCloud` flag in `MissingNodesContent.vue` - Keeps top border visible in all environments - Bottom border only shows in cloud environment where footer is present ## Test plan - [ ] Open missing nodes dialog in cloud environment - bottom border should be visible - [ ] Open missing nodes dialog in non-cloud environment - bottom border should be hidden - [ ] Verify top border remains visible in both environments ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6779-fix-Conditionally-hide-bottom-border-in-missing-nodes-modal-on-non-cloud-environments-2b16d73d365081cea1c8c98b11878045) by [Unito](https://www.unito.io) --- src/components/dialog/content/MissingNodesContent.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/dialog/content/MissingNodesContent.vue b/src/components/dialog/content/MissingNodesContent.vue index 90df451195..7c3a35b248 100644 --- a/src/components/dialog/content/MissingNodesContent.vue +++ b/src/components/dialog/content/MissingNodesContent.vue @@ -1,6 +1,7 @@