Skip to content

Commit d80777f

Browse files
committed
fix: timetable 새창에서 띄우기, 버튼으로 변경
1 parent 8562807 commit d80777f

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

  • apps/ticket-admin/src/app/events/[eventId]/edit/timeTable/_clientBoundary/TimeTableManagementClient

apps/ticket-admin/src/app/events/[eventId]/edit/timeTable/_clientBoundary/TimeTableManagementClient/index.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,12 @@ export const TimeTableManagementClient = ({ eventId }: Props) => {
149149
<Typography type="title24">TimeTable</Typography>
150150
{/* TODO: 최초 등록에만 사용해주세요. */}
151151
{timeTableData?.eventId && (
152-
<Link href={getPathUrl(EXTERNAL_PATH.TIMETABLE, { eventId: timeTableData.eventId })}>
153-
<Typography type="body16" weight="bold" style={{ marginTop: "12px", color: "#5640ff" }}>
154-
TimeTable 로 이동하기
155-
</Typography>
152+
<Link
153+
href={getPathUrl(EXTERNAL_PATH.TIMETABLE, { eventId: timeTableData.eventId })}
154+
target="_blank"
155+
rel="noopener noreferrer"
156+
>
157+
<Button style={{ marginTop: "12px", color: "#5640ff" }}>TimeTable 로 이동하기</Button>
156158
</Link>
157159
)}
158160

0 commit comments

Comments
 (0)