Skip to content

Commit

Permalink
Merge pull request #3 from npolar/updates-from-bjorn
Browse files Browse the repository at this point in the history
Minor fix
  • Loading branch information
turban committed Nov 30, 2016
2 parents b516d50 + f4554d3 commit 354d8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/js/Kernel.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export const Kernel = L.Class.extend({
const itemEl = selectEl.select('[data-val="' + value + '"]');

if (!itemEl.empty()) { // Item found
const name = itemEl.text();
const name = itemEl.text().split('(')[0]; // Don't include text in parenthesis

this._state[id] = value.toLowerCase();

Expand Down

0 comments on commit 354d8f0

Please sign in to comment.