From 803d7a0af60e14f4c35328a1bfadbf6a6157b065 Mon Sep 17 00:00:00 2001
From: "p.belezov"
Date: Thu, 18 Apr 2024 13:47:20 +0800
Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?=
=?UTF-8?q?=D0=BB=20=D0=B4=D0=B5=D0=BD=D1=8C,=20=D1=83=D0=B1=D1=80=D0=B0?=
=?UTF-8?q?=D0=BB=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=B2=20=D0=BA=D0=BE?=
=?UTF-8?q?=D0=BD=D1=81=D0=BE=D0=BB=D1=8C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
resources/views/friday/Friday.vue | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/resources/views/friday/Friday.vue b/resources/views/friday/Friday.vue
index dd56101..33617c0 100644
--- a/resources/views/friday/Friday.vue
+++ b/resources/views/friday/Friday.vue
@@ -55,13 +55,12 @@ export default {
methods: {
getCurrentDay(){
let date = new Date();
- console.log(date);
return date.getDay();
},
checkFriday(){
this.isFirst = false;
let day = this.getCurrentDay();
- this.notFriday = day !== 4;
+ this.notFriday = day !== 5;
this.day = this.dayList[day];
if (this.notFriday){
let prevPhrase = this.phrase;