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 f3c84ee commit e01bce1Copy full SHA for e01bce1
ui/src/views/template/component/SelectProviderDialog.vue
@@ -64,6 +64,7 @@ const open = () => {
64
dialogVisible.value = true
65
ModelApi.getProvider(loading).then((ok) => {
66
list_provider.value = ok.data
67
+ list_provider.value.sort((a, b) => a.provider.localeCompare(b.provider))
68
})
69
}
70
@@ -75,6 +76,7 @@ const checkModelType = (model_type: string) => {
75
76
currentModelType.value = modelTypeOptions.value.filter((item) => item.value === model_type)[0].text
77
ModelApi.getProviderByModelType(model_type, loading).then((ok) => {
78
79
80
81
82
0 commit comments