Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
michielnijenhuis committed Aug 12, 2024
1 parent c521bc3 commit ca0e876
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nuxt/components/organisms/Create/PreviewSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ watch(
{ deep: true },
);
// syncs the theme so that theme input changes are immediately reflected in the preview
// syncs theme input changes so that colors and fonts are immediately reflected in the preview
watch(
() => flixBuilderStore.newFlixTheme,
() => {
Expand All @@ -214,7 +214,7 @@ watch(
},
);
// syncs the theme so that intro input changes are immediately reflected in the preview
// syncs intro input changes so that they are immediately reflected in the preview
watch(
() => [newFlix.value.title, newFlix.value.description],
([t, d]) => {
Expand All @@ -241,7 +241,7 @@ watch(
},
);
// syncs the theme so that image uploads are immediately reflected in the preview
// syncs images so that image uploads are immediately reflected in the preview
watch(
() => [newFlix.value.logo, newFlix.value.banner],
([logo, banner]) => {
Expand Down

0 comments on commit ca0e876

Please sign in to comment.