Skip to content

Commit 45e865d

Browse files
committed
2024Q2
1 parent f73ddf7 commit 45e865d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

backend-ts/src/services/table.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import { db } from "src/database";
77
import { getRecordByUserAndWork } from "src/services/record";
88

99
export const Periods = {
10-
current: Period.parseOrThrow("2024Q1"),
10+
current: Period.parseOrThrow("2024Q2"),
1111
min: Period.parseOrThrow("2014Q2"),
12-
upcoming: Period.parseOrThrow("2024Q1"),
12+
upcoming: Period.parseOrThrow("2024Q2"),
1313
}
1414

1515
export function getValidPeriods(): Period[] {

web/frontend/js/ui/GlobalHeader.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export type GlobalHeaderProps = {
6767

6868
export class GlobalHeader extends React.Component<GlobalHeaderProps> {
6969
static LAST_NOTICE_CLICKED = 'lastNoticeClicked';
70-
static noticeId = '2024Q1';
71-
static showNoticeUntil = new Date("2024-01-15T00:00:00+09:00");
70+
static noticeId = '2024Q2';
71+
static showNoticeUntil = new Date("2024-04-15T00:00:00+09:00");
7272

7373
state = {
7474
showNotice: false,
@@ -125,7 +125,7 @@ export class GlobalHeader extends React.Component<GlobalHeaderProps> {
125125
<span className={Styles.globalMenuItemText}>작품 찾기</span>
126126
{showNotice && (
127127
<span className={Styles.globalMenuItemPopover}>
128-
2024년 1월 신작 업데이트
128+
4월 신작 업데이트!
129129
</span>
130130
)}
131131
</Link>

0 commit comments

Comments
 (0)