Skip to content

Commit

Permalink
fix(UsaFooterAddress): move order of v-bind=\"\\$attrs\" to prevent…
Browse files Browse the repository at this point in the history
… overriding CSS classes
  • Loading branch information
patrickcate committed Mar 19, 2024
1 parent 51a6ac7 commit f75efd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UsaFooterAddress/UsaFooterAddress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const phoneHref = computed(() => {
class="usa-footer__contact-heading"
>{{ heading }}</p
>
<address class="usa-footer__address" v-bind="$attrs">
<address v-bind="$attrs" class="usa-footer__address">
<slot>
<div
v-if="footerVariant === 'slim'"
Expand Down

0 comments on commit f75efd0

Please sign in to comment.