Commit 63507145 authored by Daniel Won's avatar Daniel Won

Fix missing watermark on Table Details page

parent e8676b96
......@@ -28,7 +28,7 @@ class WatermarkLabel extends React.Component<WatermarkLabelProps> {
if (low === undefined && high === undefined) {
return "Non Partitioned Table. Data available for all dates."
}
const buffer = [low, high].map((wtm) => {
return [low, high].map((wtm) => {
return moment(wtm.partition_value, "YYYY-MM-DD").format("MMM DD, YYYY");
}).join(" – ");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment