Lint fixes

pull/160/head
cagataycivici 2020-01-21 09:58:18 +03:00
parent 0e4bad5085
commit df4080154e
4 changed files with 4 additions and 4 deletions

View File

@ -422,7 +422,7 @@ export default {
return this.value;
},
equalityKey() {
return this.optionValue ? null : this.dataKey;
return this.optionValue ? null : this.dataKey;
}
}
}

View File

@ -220,7 +220,7 @@ export default {
return this.options;
},
equalityKey() {
return this.optionValue ? null : this.dataKey;
return this.optionValue ? null : this.dataKey;
}
}
}

View File

@ -356,7 +356,7 @@ export default {
}
},
equalityKey() {
return this.optionValue ? null : this.dataKey;
return this.optionValue ? null : this.dataKey;
}
}
}

View File

@ -96,7 +96,7 @@ export default {
return 'p-selectbutton p-buttonset p-component p-buttonset-' + String(this.options ? this.options.length : 0);
},
equalityKey() {
return this.optionValue ? null : this.dataKey;
return this.optionValue ? null : this.dataKey;
}
}
}