Skip to content

Commit

Permalink
chore: remove unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Dec 27, 2022
1 parent 6cbfcc1 commit 7a1a6d7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pages/kanban/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,12 @@ const resetBackground = () => {
}
const setBlur = (blurAmount: string) => {
console.log(blurAmount);
bgBlur.value = blurAmount;
board.value.background = {src: bgCustomNoResolution.value, blur: bgBlur.value, brightness: bgBrightness.value};
updateStorage();
}
const setBrightness = (brightnessAmount: string) => {
console.log(brightnessAmount);
bgBrightness.value = brightnessAmount;
board.value.background = {src: bgCustomNoResolution.value, blur: bgBlur.value, brightness: bgBrightness.value};
updateStorage();
Expand All @@ -183,7 +181,6 @@ onMounted(async () => {
board.value = boards.value[parseInt(route.params.id[0])]; // TODO: handle edge cases where for some reason id can't be parsed to int
if (board.value.background) {
console.log(board.value.background);
bgCustomNoResolution.value = board.value.background.src;
bgCustom.value = convertFileSrc(board.value.background.src);
Expand Down Expand Up @@ -327,8 +324,6 @@ const updateColumnProperties = (columnObj: Column) => {
};
const updateStorage = () => {
console.log(board.value);
const currentBoard = boards.value.filter((obj: Board) => {
return obj.id === board.value.id;
})[0];
Expand Down

0 comments on commit 7a1a6d7

Please sign in to comment.