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 8f4f5fc commit e63315bCopy full SHA for e63315b
tools/server/public/index.html.gz
-3 Bytes
tools/server/webui/src/lib/stores/server.svelte.ts
@@ -99,9 +99,9 @@ class ServerStore {
99
}
100
101
get modelName(): string | null {
102
- if (this._serverProps?.model_alias) {
103
- return this._serverProps.model_alias;
104
- }
+ if (this._serverProps?.model_alias) {
+ return this._serverProps.model_alias;
+ }
105
if (!this._serverProps?.model_path) return null;
106
return this._serverProps.model_path.split(/(\\|\/)/).pop() || null;
107
0 commit comments