Add Embedded dependency type (#553)
* Add Embedded dependency type * Why, lint, did you not complain about this in my dev env???
This commit is contained in:
parent
e4584e3f04
commit
8541b95d8b
@ -426,7 +426,7 @@
|
||||
v-model="newDependencyType"
|
||||
class="input"
|
||||
placeholder="Select one"
|
||||
:options="['required', 'optional', 'incompatible']"
|
||||
:options="['required', 'optional', 'incompatible', 'embedded']"
|
||||
:custom-label="
|
||||
(value) => value.charAt(0).toUpperCase() + value.slice(1)
|
||||
"
|
||||
|
||||
@ -475,7 +475,12 @@
|
||||
v-model="newDependencyType"
|
||||
class="input"
|
||||
placeholder="Select one"
|
||||
:options="['required', 'optional', 'incompatible']"
|
||||
:options="[
|
||||
'required',
|
||||
'optional',
|
||||
'incompatible',
|
||||
'embedded',
|
||||
]"
|
||||
:custom-label="
|
||||
(value) => value.charAt(0).toUpperCase() + value.slice(1)
|
||||
"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user