Skip to content

Commit 0d7c8a7

Browse files
committed
feat: QTable - Hiding the noResult row quasarframework#1453
1 parent ad99e2b commit 0d7c8a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/table/table-bottom.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import { QIcon } from '../icon'
55
export default {
66
methods: {
77
getBottom (h) {
8+
if (this.hideBottom) {
9+
return
10+
}
11+
812
if (this.nothingToDisplay) {
913
const message = this.filter
1014
? this.noResultsLabel || this.$q.i18n.table.noResults
@@ -16,10 +20,6 @@ export default {
1620
])
1721
}
1822

19-
if (this.hideBottom) {
20-
return
21-
}
22-
2323
const bottom = this.$scopedSlots.bottom
2424

2525
return h('div', { staticClass: 'q-table-bottom row items-center' },

0 commit comments

Comments
 (0)