RubyGems
npm
Organizations
Log in
Sign up
npm
@kizmann/nano-ui
Versions diffs
0.8.29 → 0.8.30
Page 4
@kizmann/nano-ui 0.8.29 → 0.8.30
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/demos/overview.html
+2
-2
package/dist/nano-ui.js
+1
-1
package/dist/nano-ui.js.map
+1
-1
package/package.json
+1
-1
package/src/paginator/src/paginator/paginator.js
+4
-0
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@kizmann/nano-ui",
3
-
"version": "0.8.
29
",
3
+
"version": "0.8.
30
",
4
4
"license": "MIT",
5
5
"private": false,
6
6
"author": "Eduard Kizmann <kizmann@protonmail.ch>",
package/src/paginator/src/paginator/paginator.js
CHANGED
Viewed
@@ -216,6 +216,10 @@ export default {
216
216
217
217
renderGoto()
218
218
{
219
+
if ( this.pageOptions.length > 500 ) {
220
+
return null;
221
+
}
222
+
219
223
let props = {
220
224
modelValue: this.tempPage,
221
225
size: this.size,
« First
‹ Prev
1
2
3
4