From 258637c3432b435eacf88e21a6814b8efaba3251 Mon Sep 17 00:00:00 2001 From: David Huynh Date: Thu, 28 Oct 2010 23:37:50 +0000 Subject: [PATCH] Minor bug introduced recently when trying to be smart to clean up operation json git-svn-id: http://google-refine.googlecode.com/svn/trunk@1728 7d457c2a-affb-35e4-300a-418c747d4874 --- main/webapp/modules/core/scripts/project/history-panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/webapp/modules/core/scripts/project/history-panel.js b/main/webapp/modules/core/scripts/project/history-panel.js index ba0f9a5b3..870c20f89 100644 --- a/main/webapp/modules/core/scripts/project/history-panel.js +++ b/main/webapp/modules/core/scripts/project/history-panel.js @@ -256,7 +256,7 @@ HistoryPanel.prototype._showApplyOperationsDialog = function() { if (!json.startsWith("[")) { json = "[" + json; } - if (!json.endsWith("[")) { + if (!json.endsWith("]")) { json = json + "]"; }