We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad99e2b commit 0d7c8a7Copy full SHA for 0d7c8a7
src/components/table/table-bottom.js
@@ -5,6 +5,10 @@ import { QIcon } from '../icon'
5
export default {
6
methods: {
7
getBottom (h) {
8
+ if (this.hideBottom) {
9
+ return
10
+ }
11
+
12
if (this.nothingToDisplay) {
13
const message = this.filter
14
? this.noResultsLabel || this.$q.i18n.table.noResults
@@ -16,10 +20,6 @@ export default {
16
20
])
17
21
}
18
22
19
- if (this.hideBottom) {
- return
- }
-
23
const bottom = this.$scopedSlots.bottom
24
25
return h('div', { staticClass: 'q-table-bottom row items-center' },
0 commit comments