Skip to content

Commit 3847de5

Browse files
committed
fix: 이슈 수정
1 parent 2f549c8 commit 3847de5

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

apps/ticket-admin/src/app/events/create/_clientBoundary/TicketManagementClient/index.module.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
color: #fff;
138138
font-weight: 600;
139139
font-size: 14px;
140+
white-space: pre-line !important;
140141
text-align: left;
141142
}
142143

@@ -264,8 +265,8 @@
264265
display: flex;
265266
align-items: center;
266267
justify-content: center;
267-
width: 32px;
268-
height: 32px;
268+
width: 24px;
269+
height: 24px;
269270

270271
color: #ccc;
271272
font-weight: bold;

apps/ticket-admin/src/app/events/create/_clientBoundary/TicketManagementClient/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ export function TicketManagementClient({ eventId }: Props) {
222222
<div className={cx("headerCell")}>Ticket Name</div>
223223
<div className={cx("headerCell")}>Price</div>
224224
<div className={cx("headerCell")}>Refund</div>
225-
<div className={cx("headerCell")}>Ticket sold</div>
226-
<div className={cx("headerCell")}>Ticket used</div>
225+
<div className={cx("headerCell")}>{"Ticket sold\n(팔린티켓 / 전체티켓)"}</div>
226+
<div className={cx("headerCell")}>{"Ticket used\n(사용된 티켓 / 팔린티켓)"}</div>
227227
<div className={cx("headerCell")}>Ticket sold amount</div>
228228
</div>
229229

apps/ticket/src/app/(pages)/event/[eventId]/_clientBoundray/DesktopTicketSectionClient/index.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
flex-direction: column;
1919
justify-content: space-between;
2020
height: calc(100% - 77px - 44px - 28px - 12px);
21+
scrollbar-color: #888 theme.$gray-600;
2122
}
2223

2324
.select_section {

apps/ticket/src/app/(pages)/event/[eventId]/_clientBoundray/SelectTicketBottomSheet/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const SelectTicketBottomSheetContent = ({
6767
const roundOptions = eventTicketsData.rounds.map((round) => {
6868
return {
6969
value: String(round.roundId),
70-
label: `${round.roundName} (${round.roundPrice})`,
70+
label: `${round.roundName}`,
7171
disabled: !round.roundAvailable,
7272
};
7373
});

0 commit comments

Comments
 (0)