This commit is contained in:
Saifeddine ALOUI 2024-05-03 01:35:29 +02:00
parent bcd0dccb40
commit 51d9393302
5 changed files with 43 additions and 43 deletions

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
View File

@ -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>

View File

@ -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(){

View File

@ -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