mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 11:36:38 +08:00
Merge branch 'main' of https://github.com/Yidadaa/ChatGPT-Next-Web
This commit is contained in:
commit
60e331266a
@ -133,7 +133,9 @@ export const useAppConfig = createPersistStore(
|
|||||||
.customModels.split(",")
|
.customModels.split(",")
|
||||||
.filter((v) => !!v && v.length > 0)
|
.filter((v) => !!v && v.length > 0)
|
||||||
.map((m) => ({ name: m, available: true }));
|
.map((m) => ({ name: m, available: true }));
|
||||||
return get().models.concat(customModels);
|
const allModels = get().models.concat(customModels);
|
||||||
|
allModels.sort((a, b) => (a.name < b.name ? -1 : 1));
|
||||||
|
return allModels;
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "ChatGPT Next Web",
|
"productName": "ChatGPT Next Web",
|
||||||
"version": "2.9.9"
|
"version": "2.9.10"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
|
Loading…
Reference in New Issue
Block a user