Indent with spaces

This commit is contained in:
Samuel Elliott 2018-02-20 00:13:24 +00:00
parent afacd9cfbb
commit 0be09f6cf8
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@
this.update();
},
removeItem(item) {
if (this.setting.disabled || this.setting.min && this.items.length <= this.setting.min) return;
if (this.setting.disabled || this.setting.min && this.items.length <= this.setting.min) return;
this.items = this.items.filter(i => i !== item);
this.update();
},