Skip to content

Commit 2499660

Browse files
committed
update(ui): misc eslint fixes
1 parent fb32d4f commit 2499660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/src/components/QIconPicker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export default {
212212
// otherwise returns false if it has changed
213213
__samePagination (oldPag, newPag) {
214214
// eslint-disable-next-line no-unused-vars
215-
for (let prop in newPag) {
215+
for (const prop in newPag) {
216216
if (newPag[prop] !== oldPag[prop]) {
217217
return false
218218
}
@@ -304,7 +304,7 @@ export default {
304304
max: totalPages
305305
},
306306
on: {
307-
'input': v => {
307+
input: v => {
308308
this.__setPagination({ page: v })
309309
}
310310
}
@@ -365,7 +365,7 @@ export default {
365365
icon: name
366366
},
367367
on: {
368-
'click': () => {
368+
click: () => {
369369
this.$emit('input', name)
370370
}
371371
}

0 commit comments

Comments
 (0)