Skip to content

Commit

Permalink
Fix invalid config for first use
Browse files Browse the repository at this point in the history
  • Loading branch information
dgthanhan committed Oct 18, 2019
1 parent 3833197 commit 3edd658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/editors/ColorSelector.js
Expand Up @@ -353,7 +353,7 @@ ColorSelector.prototype.setupColors = function () {
this.loadDocumentColors();
};
ColorSelector.prototype.loadRecentlyUsedColors = function () {
var colors = Config.get("gridcolorpicker.recentlyUsedColors");
var colors = Config.get("gridcolorpicker.recentlyUsedColors", "");

this._lastUsedColors = colors;
var c = colors.split(",");
Expand Down

0 comments on commit 3edd658

Please sign in to comment.