We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c9c0b commit 095b594Copy full SHA for 095b594
web/src/components/ArgsPicker.vue
@@ -3,7 +3,7 @@
3
<v-dialog
4
v-model="editDialog"
5
hide-overlay
6
- width="300"
+ width="400"
7
>
8
<v-card :color="$vuetify.theme.dark ? '#212121' : 'white'">
9
<v-card-title></v-card-title>
@@ -24,6 +24,8 @@
24
v-model.trim="editedVar.name"
25
:rules="[(v) => !!v || $t('arg_required')]"
26
required
27
+ outlined
28
+ dense
29
/>
30
31
<div class="text-right mt-2">
@@ -68,10 +70,16 @@
68
70
v-for="(v, i) in modifiedVars"
69
71
close
72
@click:close="deleteVar(i)"
- :key="v.name"
73
+ :key="i"
74
@click="editVar(i)"
75
- {{ v.name }}
76
+ <div
77
+ style="
78
+ max-width: 200px;
79
+ overflow: hidden;
80
+ text-overflow: ellipsis;
81
+ "
82
+ >{{ v.name }}</div>
83
</v-chip>
84
<v-chip @click="editVar(null)">
85
+ <span
0 commit comments