Skip to content

Commit d61e853

Browse files
authored
update key and value bindings (#968)
- Change key from item.name to item.path - Change label from item.name to item.path - Change value from item.name to item.path
1 parent 7d43f2f commit d61e853

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/endpoints/NewEndpoint.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@
189189
style="width: 100%">
190190
<el-option
191191
v-for="item in availableQuantizations"
192-
:key="item.name"
193-
:label="item.name"
194-
:value="item.name" />
192+
:key="item.path"
193+
:label="item.path"
194+
:value="item.path" />
195195
</el-select>
196196
</el-form-item>
197197

0 commit comments

Comments
 (0)