Skip to content

Commit

Permalink
fix: Activity Reactions display issue on certain screen resolutions - M…
Browse files Browse the repository at this point in the history
…EED-7823 - Meeds-io/meeds#2593 (#566)

This PR will fix the display of activity reaction in some screen
resolution
  • Loading branch information
AzmiTouil authored Dec 6, 2024
1 parent 3c04f71 commit 364e9fd
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ export default {
type: Object,
default: null,
},
isMobile: {
type: Boolean,
default: () => false
},
},
data: () => ({
linkedKudosList: [],
Expand Down Expand Up @@ -137,9 +141,6 @@ export default {
}
return false;
},
isMobile() {
return this.$vuetify.breakpoint.name === 'sm' || this.$vuetify.breakpoint.name === 'xs';
},
},
created() {
this.$root.$on('activity-comment-created', this.resetActivity);
Expand Down

0 comments on commit 364e9fd

Please sign in to comment.