Add AM/PM marker to date display
This commit is contained in:
@@ -76,7 +76,7 @@ export default function AccountsList({
|
||||
<div
|
||||
className="text-nowrap"
|
||||
>
|
||||
{account.loginDate ? moment(account.loginDate).format("MM-DD-YYYY hh:mm") : <> </>}
|
||||
{account.loginDate ? moment(account.loginDate).format("MM-DD-YYYY hh:mm a") : <> </>}
|
||||
</div>,
|
||||
<div>
|
||||
{account.accountStatus}
|
||||
|
||||
@@ -76,12 +76,12 @@ export default function RaidInstanceList({
|
||||
<div
|
||||
className="text-nowrap"
|
||||
>
|
||||
{moment(raidInstance.raidStartDate).format("MM-DD-YYYY hh:mm")}
|
||||
{moment(raidInstance.raidStartDate).format("MM-DD-YYYY hh:mm a")}
|
||||
</div>,
|
||||
<div
|
||||
className="text-nowrap"
|
||||
>
|
||||
{moment(raidInstance.raidEndDate).format("MM-DD-YYYY hh:mm")}
|
||||
{moment(raidInstance.raidEndDate).format("MM-DD-YYYY hh:mm a")}
|
||||
</div>,
|
||||
<div>
|
||||
{raidInstance.raidSize}
|
||||
|
||||
Reference in New Issue
Block a user