Skip to content

Commit

Permalink
Fix #815
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Müller committed Jul 25, 2016
1 parent 1073569 commit aa26d1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/icon-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ class IconPicker extends Picker {

selectItem(item, trigger) {
super.selectItem(item, trigger);
this.label.innerHTML = item.innerHTML;
if (item != null) {
this.label.innerHTML = item.innerHTML;
}
}
}

Expand Down

0 comments on commit aa26d1d

Please sign in to comment.