We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb32d4f commit 2499660Copy full SHA for 2499660
ui/src/components/QIconPicker.js
@@ -212,7 +212,7 @@ export default {
212
// otherwise returns false if it has changed
213
__samePagination (oldPag, newPag) {
214
// eslint-disable-next-line no-unused-vars
215
- for (let prop in newPag) {
+ for (const prop in newPag) {
216
if (newPag[prop] !== oldPag[prop]) {
217
return false
218
}
@@ -304,7 +304,7 @@ export default {
304
max: totalPages
305
},
306
on: {
307
- 'input': v => {
+ input: v => {
308
this.__setPagination({ page: v })
309
310
@@ -365,7 +365,7 @@ export default {
365
icon: name
366
367
368
- 'click': () => {
+ click: () => {
369
this.$emit('input', name)
370
371
0 commit comments