Skip to content

Commit

Permalink
feat(cookie-control): reorder banner buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Dec 14, 2022
1 parent 113b07e commit 130f63a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/runtime/components/CookieControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
</slot>
</div>
<div class="cookieControl__BarButtons">
<button
@click="setConsent({ reload: false })"
v-text="localeStrings?.acceptAll"
/>
<button
v-if="moduleOptions.isAcceptNecessaryButtonEnabled"
@click="acceptNecessary"
Expand All @@ -23,10 +27,6 @@
@click="isModalActive = true"
v-text="localeStrings?.manageCookies"
/>
<button
@click="setConsent({ reload: false })"
v-text="localeStrings?.acceptAll"
/>
</div>
</div>
</div>
Expand Down

0 comments on commit 130f63a

Please sign in to comment.