Skip to content

Commit

Permalink
🚨 formated code #165
Browse files Browse the repository at this point in the history
  • Loading branch information
jannik.lange committed Aug 7, 2024
1 parent 545b73a commit a50fe3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Comment/MucComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ const commentClass = computed(() => {
/**
* Computes rating with min and max limits
*/
const computedRating = computed(() => Math.min(Math.max(props.rating, 0), MAX_STARS))
const computedRating = computed(() =>
Math.min(Math.max(props.rating, 0), MAX_STARS)
);
/*
* Converts the dot used on decimal numbers and converts it to a comma.
Expand Down

0 comments on commit a50fe3e

Please sign in to comment.