We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94573d2 commit 8625b55Copy full SHA for 8625b55
web/src/components/DisputeView/DisputeInfo/index.tsx
@@ -95,7 +95,7 @@ const DisputeInfo: React.FC<IDisputeInfo> = ({
95
{
96
icon: CalendarIcon,
97
name: getPeriodPhrase(period ?? 0),
98
- value: !displayAsList ? new Date(date * 1000).toLocaleString() + " (Local Time)" : formatDate(date),
+ value: !displayAsList ? `${new Date(date * 1000).toLocaleString()} (Local Time)` : formatDate(date),
99
display: !isUndefined(period) && !isUndefined(date),
100
style: "grid-column: 2 / 4;",
101
},
0 commit comments