Pārlūkot izejas kodu

Merge pull request #850 from open-webui/version-fix

fix: version
Timothy Jaeryang Baek 1 gadu atpakaļ
vecāks
revīzija
6bed7b1d34
2 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 1 1
      package.json
  2. 1 1
      src/lib/components/chat/Settings/About.svelte

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
 	"name": "open-webui",
-	"version": "v1.0.0-alpha.101",
+	"version": "1.0.0-alpha.101",
 	"private": true,
 	"scripts": {
 		"dev": "vite dev --host",

+ 1 - 1
src/lib/components/chat/Settings/About.svelte

@@ -18,7 +18,7 @@
 			<div class=" mb-2.5 text-sm font-medium">{WEBUI_NAME} Version</div>
 			<div class="flex w-full">
 				<div class="flex-1 text-xs text-gray-700 dark:text-gray-200">
-					{WEB_UI_VERSION}
+					v{WEB_UI_VERSION}
 				</div>
 			</div>
 		</div>