This commit is contained in:
Douglas Barone 2020-12-18 10:10:32 -04:00
parent aaaa6e0ebd
commit cb22daa2d1

View File

@ -233,9 +233,6 @@ export default {
resultSize: pageSize resultSize: pageSize
} }
}, },
beforeMount() {
if (this.$vuetify.breakpoint.mdAndUp) this.resultSize = this.pageSize = 24
},
apollo: { apollo: {
userPresence: { userPresence: {
// fetchPolicy: 'cache-and-network', // fetchPolicy: 'cache-and-network',
@ -286,6 +283,9 @@ export default {
return this.userPresence?.slice(0, this.resultSize) || [] return this.userPresence?.slice(0, this.resultSize) || []
} }
}, },
beforeMount() {
if (this.$vuetify.breakpoint.mdAndUp) this.resultSize = this.pageSize = 24
},
methods: { methods: {
color(status) { color(status) {
return { return {