Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitrySharabin committed Oct 30, 2024
1 parent f416bd5 commit 919edb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/space-picker/space-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Self = class SpacePicker extends ColorElement {
if (value !== undefined && value !== null) {
if (!(value in this.spaces)) {
let spaces = Object.keys(this.spaces).join(", ");
console.warn(`No color space found with id = "${value}". Choose one of the following: ${spaces}.`);
console.warn(`No color space found with id = "${ value }". Choose one of the following: ${ spaces }.`);
}

if (this._el.picker.value !== value) {
Expand Down

0 comments on commit 919edb7

Please sign in to comment.