mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +00:00
updated
This commit is contained in:
parent
bcd0dccb40
commit
51d9393302
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LoLLMS WebUI - Welcome</title>
|
||||
<script type="module" crossorigin src="/assets/index-37b55051.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-42b7aabe.css">
|
||||
<script type="module" crossorigin src="/assets/index-50a0948c.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-da1732e4.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -178,7 +178,7 @@ export default {
|
||||
name: 'TopBar',
|
||||
computed:{
|
||||
storeLogo(){
|
||||
return '/user_infos/'+this.$store.state.config.app_custom_logo || storeLogo
|
||||
return this.$store.state.config.app_custom_logo!=''?'/user_infos/'+this.$store.state.config.app_custom_logo:storeLogo
|
||||
},
|
||||
languages: {
|
||||
get(){
|
||||
|
@ -5446,7 +5446,7 @@ export default {
|
||||
},
|
||||
user_avatar:{
|
||||
get() {
|
||||
return "/user_infos/"+this.$store.state.config.user_avatar;
|
||||
return this.$store.state.config.user_avatar!=''?"/user_infos/"+this.$store.state.config.user_avatar:storeLogo;
|
||||
},
|
||||
set(value) {
|
||||
// You should not set the value directly here; use the updateSetting method instead
|
||||
|
Loading…
Reference in New Issue
Block a user