Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ToBinio committed Jan 12, 2024
1 parent f98bf6c commit a99d750
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/components/base/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const props = withDefaults(
transparent: false,
hoverFilled: false,
hoverFilledOnly: false,
disabled: false
disabled: false,
}
)
Expand All @@ -60,7 +60,7 @@ const accentedButton = computed(() =>
'btn-hover-filled-only': hoverFilledOnly,
'btn-outline': outline,
'color-accent-contrast': accentedButton,
'disabled': disabled,
disabled: disabled,
[`btn-${color}`]: true,
}"
:to="link"
Expand All @@ -81,7 +81,7 @@ const accentedButton = computed(() =>
'btn-hover-filled-only': hoverFilledOnly,
'btn-outline': outline,
'color-accent-contrast': accentedButton,
'disabled': disabled,
disabled: disabled,
[`btn-${color}`]: true,
}"
:href="link"
Expand Down

0 comments on commit a99d750

Please sign in to comment.