Skip to content

Commit 07e4004

Browse files
[backport core/1.32] fix: Conditionally hide bottom border in missing nodes modal on non-cloud environments (#6790)
Backport of #6779 to `core/1.32` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6790-backport-core-1-32-fix-Conditionally-hide-bottom-border-in-missing-nodes-modal-on-non--2b16d73d36508172be63cc0e2ccb0554) by [Unito](https://www.unito.io) Co-authored-by: Jin Yi <jin12cc@gmail.com>
1 parent 15794a8 commit 07e4004

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/dialog/content/MissingNodesContent.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div
3-
class="flex w-[490px] flex-col border-t-1 border-b-1 border-border-default"
3+
class="flex w-[490px] flex-col border-t-1 border-border-default"
4+
:class="isCloud ? 'border-b-1' : ''"
45
>
56
<div class="flex h-full w-full flex-col gap-4 p-4">
67
<!-- Description -->

0 commit comments

Comments
 (0)