Fix linting issues.

This commit is contained in:
Kavin 2022-11-14 01:55:53 +00:00
parent e764b0cdf1
commit 1ad228e39e
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD

View File

@ -24,7 +24,7 @@
</template>
<script>
export default {
export default {
data() {
return {
donationHref: null,
@ -36,20 +36,20 @@
},
methods: {
async fetchConfig() {
this.fetchJson(this.apiUrl() + "/config").then((config) => {
this.fetchJson(this.apiUrl() + "/config").then(config => {
this.donationHref = config?.donationUrl;
this.statusPageHref = config?.statusPageUrl;
});
},
},
};
};
</script>
<style>
footer {
footer {
@apply bg-light-900;
}
.dark footer {
}
.dark footer {
@apply bg-dark-800;
}
}
</style>