mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-26 15:37:24 +00:00
Fix linting issues.
This commit is contained in:
parent
e764b0cdf1
commit
1ad228e39e
@ -24,7 +24,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
donationHref: null,
|
donationHref: null,
|
||||||
@ -36,20 +36,20 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async fetchConfig() {
|
async fetchConfig() {
|
||||||
this.fetchJson(this.apiUrl() + "/config").then((config) => {
|
this.fetchJson(this.apiUrl() + "/config").then(config => {
|
||||||
this.donationHref = config?.donationUrl;
|
this.donationHref = config?.donationUrl;
|
||||||
this.statusPageHref = config?.statusPageUrl;
|
this.statusPageHref = config?.statusPageUrl;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
footer {
|
footer {
|
||||||
@apply bg-light-900;
|
@apply bg-light-900;
|
||||||
}
|
}
|
||||||
.dark footer {
|
.dark footer {
|
||||||
@apply bg-dark-800;
|
@apply bg-dark-800;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user