Skip to content

Commit 409cd0c

Browse files
committed
feat(ui): add arrow for task params in inventory form
1 parent cdc24eb commit 409cd0c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

web/src/components/IntegrationForm.vue

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,20 @@
3737
<v-card
3838
v-if="item.template_id"
3939
style="background: rgba(133, 133, 133, 0.06)"
40-
class="mb-6"
40+
class="mb-6 pt-3"
4141
>
42+
43+
<div style="
44+
position: absolute;
45+
background: var(--highlighted-card-bg-color);
46+
width: 28px;
47+
height: 28px;
48+
transform: rotate(45deg);
49+
left: calc(50% - 14px);
50+
top: -14px;
51+
border-radius: 0;
52+
"></div>
53+
4254
<v-card-text>
4355
<TaskParamsForm
4456
:template="templates.find(t => t.id === item.template_id)"

web/src/components/ScheduleForm.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
top: -14px;
6161
border-radius: 0;
6262
"></div>
63+
6364
<v-card-text>
6465
<TaskParamsForm
6566
:template="templates.find(t => t.id === item.template_id)"

0 commit comments

Comments
 (0)