chore: remove leftovers

This commit is contained in:
Pitu 2021-06-20 21:53:16 +09:00
parent c416e2a0bf
commit 2efd58f1a4
3 changed files with 7 additions and 5 deletions

View File

@ -130,7 +130,7 @@ const schema = Joi.object({
section: Sections.SOCIAL_AND_SHARING
})
.label('Twitter handle')
.description('Your twitter handle'),
.description('Your twitter username'),
// Instance settings
backgroundImageURL: Joi.string().uri().default(p => `${p.domain}/assets/images/background.jpg`)

View File

@ -151,9 +151,6 @@ export default {
computed: {
...mapState(['config', 'auth'])
},
mounted() {
console.log(this.isNsfw);
},
methods: {
...mapActions({
deleteAlbumAction: 'albums/deleteAlbum',

View File

@ -12,7 +12,7 @@
<hr>
<div v-for="[sectionName, fields] in Object.entries(sectionedSettings)" :key="sectionName" class="block">
<h5 class="title is-5 has-text-grey-lighter">
<h5 class="title is-5 has-text-grey-lighter text-center mb4 mt4">
{{ sectionName }}
</h5>
<JoiObject ref="jois" :settings="fields" :errors="validationErrors" />
@ -106,3 +106,8 @@ export default {
}
};
</script>
<style lang="scss" scoped>
h5.title {
text-decoration: underline;
}
</style>