Skip to content

Commit

Permalink
feat: Fix space list page ui glitch when mobile - MEED-3359 - Meeds-i…
Browse files Browse the repository at this point in the history
…o/MIPs#113 (#3518)

This change fixes The UI Glitch in the spaces list page due to the change in breakpoints
  • Loading branch information
SaraBoutej authored and rdenarie committed Feb 28, 2024
1 parent db677ad commit 6c1458d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ export default {
}
},
isMobile() {
return this.$vuetify.breakpoint.xs;
return this.$vuetify.breakpoint.smAndDown;
},
isFavorite() {
return this.space?.isFavorite === 'true';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default {
}];
},
isMobile() {
return this.$vuetify.breakpoint.xs;
return this.$vuetify.breakpoint.smAndDown;
}
},
watch: {
Expand Down

0 comments on commit 6c1458d

Please sign in to comment.