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:
Emma Cypress 2022-06-26 05:09:10 +00:00 committed by GitHub
parent e4584e3f04
commit 8541b95d8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -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)
"

View File

@ -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)
"