diff --git a/.envrc b/.envrc new file mode 100644 index 000000000..70c14ac73 --- /dev/null +++ b/.envrc @@ -0,0 +1,2 @@ +git pull +git status diff --git a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue index f9674e74b..e7b8b88a5 100644 --- a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +++ b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue @@ -502,6 +502,14 @@ watch( } }, ); + +// Merry Christmas! πŸŽ„ +const isChristmas = computed(() => { + const today = new Date(); + const month = today.getMonth() + 1; // getMonth() θΏ”ε›ž 0-11 + const day = today.getDate(); + return month === 12 && day === 25; +});