From ccc438527f4e7df06c94a96e95ec33e60195fa50 Mon Sep 17 00:00:00 2001 From: Ajith Ranka Date: Wed, 25 Jan 2017 13:01:54 +0530 Subject: [PATCH] fix eslint error: missing semicolon --- modules/ui/shortcuts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/shortcuts.js b/modules/ui/shortcuts.js index 09df94e85..2f9dad149 100644 --- a/modules/ui/shortcuts.js +++ b/modules/ui/shortcuts.js @@ -55,7 +55,7 @@ export function uiShortcuts(context) { var description = p .append('span') .attr('class', 'col8') - .text(function(d) { return d.desc }); + .text(function(d) { return d.desc; }); } var keybinding = d3keybinding('shortcuts')