We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f8944 commit 4e93e1aCopy full SHA for 4e93e1a
mir-webapp/src/main/vue/name-search/src/App.vue
@@ -27,7 +27,11 @@
27
<div class="col-4">
28
<select v-model="model.currentOwnIdentifierType" class="form-control form-select">
29
<option selected="selected" value="">{{ model.selectLabel }}</option>
30
- <option v-for="identifierType in model.possibleIdentifierTypes.toLowerCase()" :key="identifierType.value" :value="identifierType.value">
+ <option
31
+ v-for="identifierType in model.possibleIdentifierTypes"
32
+ :key="identifierType.value"
33
+ :value="identifierType.value.toLowerCase()"
34
+ >
35
{{ identifierType.label }}
36
</option>
37
</select>
0 commit comments