mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
more fixes
This commit is contained in:
parent
b29cda598f
commit
73aa87669e
@ -35,7 +35,7 @@ export const HelpIndexView: FC<{}> = props =>
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="d-grid gap-2 col-8 mx-auto">
|
<div className="d-grid gap-2 col-8 mx-auto">
|
||||||
<button className="btn btn-link text-primary" type="button" onClick={onRequestMySanctionStatusClick}>{LocalizeText('help.main.my.sanction.status')}</button>
|
<button className="btn btn-link text-primary fw-bold" type="button" onClick={onRequestMySanctionStatusClick}>{LocalizeText('help.main.my.sanction.status')}</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</>
|
</>
|
||||||
|
@ -33,7 +33,7 @@ export const ModToolsUserRoomVisitsView: FC<ModToolsUserRoomVisitsViewProps> = p
|
|||||||
const item = roomVisitData.rooms[props.index];
|
const item = roomVisitData.rooms[props.index];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={props.style} key={props.key} className="row room-visit">
|
<div style={props.style} key={props.key} className="row room-visit align-items-center">
|
||||||
<div className="col-auto text-center">{item.enterHour.toString().padStart(2, '0')}:{item.enterMinute.toString().padStart(2, '0')}</div>
|
<div className="col-auto text-center">{item.enterHour.toString().padStart(2, '0')}:{item.enterMinute.toString().padStart(2, '0')}</div>
|
||||||
<div className="col-7"><span className="fw-bold">Room: </span>{item.roomName}</div>
|
<div className="col-7"><span className="fw-bold">Room: </span>{item.roomName}</div>
|
||||||
<button className="btn btn-sm btn-link col-auto fw-bold text-primary" onClick={() => TryVisitRoom(item.roomId)}>Visit Room</button>
|
<button className="btn btn-sm btn-link col-auto fw-bold text-primary" onClick={() => TryVisitRoom(item.roomId)}>Visit Room</button>
|
||||||
|
@ -80,7 +80,7 @@ export const NotificationCenterMessageHandler: FC<INotificationCenterMessageHand
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationUtilities.showSingleBubble(LocalizeText('notifications.text.loyalty.received', [ 'amount' ], [ parser.amountChanged.toString() ]), NotificationBubbleType.INFO, imageUrl);
|
NotificationUtilities.showSingleBubble(LocalizeText('notifications.text.loyalty.received', [ 'AMOUNT' ], [ parser.amountChanged.toString() ]), NotificationBubbleType.INFO, imageUrl);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
CreateMessageHook(ActivityPointNotificationMessageEvent, onActivityPointNotificationMessageEvent);
|
CreateMessageHook(ActivityPointNotificationMessageEvent, onActivityPointNotificationMessageEvent);
|
||||||
|
Loading…
Reference in New Issue
Block a user