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 27922ff commit 526ea02Copy full SHA for 526ea02
frontend/src/views/login/index.vue
@@ -70,11 +70,11 @@ const loginForm = ref({
70
})
71
72
const bg = computed(() => {
73
- return appearanceStore.isBlue ? loginImage : appearanceStore.getBg || login_image
+ return appearanceStore.getBg || (appearanceStore.isBlue ? loginImage : login_image)
74
75
76
const loginBg = computed(() => {
77
- return appearanceStore.isBlue ? logo : appearanceStore.getLogin || aboutBg
+ return appearanceStore.getLogin || (appearanceStore.isBlue ? logo : aboutBg)
78
79
80
const rules = {
0 commit comments