From d5283d57e4331ca58638723fa3e34306e4e4ce7c Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Mon, 7 Mar 2016 16:35:40 -0800 Subject: [PATCH] [Timeline] Add missing semicolon --- platform/features/timeline/src/actions/TimelineCSVExporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/features/timeline/src/actions/TimelineCSVExporter.js b/platform/features/timeline/src/actions/TimelineCSVExporter.js index 4ef27b3bc3..bc73d6f782 100644 --- a/platform/features/timeline/src/actions/TimelineCSVExporter.js +++ b/platform/features/timeline/src/actions/TimelineCSVExporter.js @@ -41,7 +41,7 @@ define([ var name = property.name; if (!columnNames[name]) { columnNames[name] = true; - columns.push(new MetadataColumn(name)) + columns.push(new MetadataColumn(name)); } }