Skip to content

Commit

Permalink
fix(QTable): JSON > some props default values
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed May 3, 2024
1 parent 2575ede commit 15e1dc3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions ui/src/components/table/QTable.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},

"virtual-scroll-slice-size": {
"type": [ "Number", "String" ],
"type": [ "Number", "String", "null" ],
"desc": "Minimum number of rows to render in the virtual list",
"default": "30",
"category": "virtual-scroll"
Expand Down Expand Up @@ -661,7 +661,6 @@
"type": "Array",
"desc": "Filtered rows"
},
"default": "# see source code",
"examples": [ "# see source code" ],
"category": "filter"
},
Expand Down Expand Up @@ -703,7 +702,7 @@
"rows-per-page-options": {
"type": "Array",
"desc": "Options for user to pick (Numbers); Number 0 means 'Show all rows in one page'",
"default": "[ 3, 5, 7, 10, 15, 20, 25, 50, 0 ]",
"default": "[ 5, 7, 10, 15, 20, 25, 50, 0 ]",
"examples": [ "[ 10, 20 ]" ],
"category": "pagination"
},
Expand All @@ -728,7 +727,6 @@
"expanded": {
"type": "Array",
"desc": "Keeps the array with expanded rows keys",
"default": "[]",
"syncable": true,
"examples": [ "# v-model:expanded=\"expanded\"" ],
"category": "expansion"
Expand Down Expand Up @@ -756,7 +754,6 @@
"type": "Array",
"desc": "Sorted rows"
},
"default": "# see source code",
"examples": [ "# see source code" ],
"category": "sorting"
}
Expand Down

0 comments on commit 15e1dc3

Please sign in to comment.