@asd20/ui 3.2.472 → 3.2.474
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -303,7 +303,6 @@ export default {
|
|
|
303
303
|
data: function() {
|
|
304
304
|
return {
|
|
305
305
|
numberToShow: 9,
|
|
306
|
-
numberOfRecords: 0,
|
|
307
306
|
counter: 1,
|
|
308
307
|
counter2: 9,
|
|
309
308
|
}
|
|
@@ -362,8 +361,8 @@ export default {
|
|
|
362
361
|
}
|
|
363
362
|
},
|
|
364
363
|
reset() {
|
|
365
|
-
this.counter
|
|
366
|
-
this.counter2
|
|
364
|
+
this.counter = 1
|
|
365
|
+
this.counter2 = 9
|
|
367
366
|
this.$emit('announcements-in-view')
|
|
368
367
|
},
|
|
369
368
|
},
|
|
@@ -307,7 +307,6 @@ export default {
|
|
|
307
307
|
data: function() {
|
|
308
308
|
return {
|
|
309
309
|
numberToShow: 10,
|
|
310
|
-
numberOfRecords: 0,
|
|
311
310
|
counter: 1,
|
|
312
311
|
counter2: 10,
|
|
313
312
|
}
|
|
@@ -363,8 +362,8 @@ export default {
|
|
|
363
362
|
}
|
|
364
363
|
},
|
|
365
364
|
reset() {
|
|
366
|
-
this.counter
|
|
367
|
-
this.counter2
|
|
365
|
+
this.counter = 1
|
|
366
|
+
this.counter2 = 10
|
|
368
367
|
this.$emit('announcements-in-view')
|
|
369
368
|
},
|
|
370
369
|
},
|