Run lint:fix and accept a huge formatting change

This commit is contained in:
Julian Stirling 2025-10-27 18:00:00 +00:00
parent 3900c3e1ad
commit c085d2c0ac
68 changed files with 756 additions and 1047 deletions

View file

@ -1,15 +1,18 @@
<template>
<a
class="uk-button"
:class="[isDisabled ? 'uk-button-disabled' : '', buttonPrimary ? 'uk-button-primary' : 'uk-button-default']"
:href="URL"
download
> {{ buttonLabel }}</a
>
<a
class="uk-button"
:class="[
isDisabled ? 'uk-button-disabled' : '',
buttonPrimary ? 'uk-button-primary' : 'uk-button-default',
]"
:href="URL"
download
>
{{ buttonLabel }}</a
>
</template>
<script>
export default {
name: "EndpointButton",
@ -17,7 +20,7 @@ export default {
buttonPrimary: {
type: Boolean,
required: false,
default: true
default: true,
},
URL: {
type: String,
@ -26,18 +29,18 @@ export default {
isDisabled: {
type: Boolean,
required: false,
default: false
default: false,
},
destinationName: {
type: String,
required: false,
default: null
default: null,
},
buttonLabel: {
type: String,
required: false,
default: "Download File"
}
default: "Download File",
},
},
};
</script>