lint fixes

This commit is contained in:
Ulf Gebhardt 2023-05-25 12:41:04 +02:00
parent 73417079ed
commit 04ab8148f9
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 5 additions and 4 deletions

View File

@ -325,7 +325,7 @@ export default {
return date < new Date()
},
notBeforeEventDay(date) {
return date < new Date(this.formData.eventStart).setHours(0,0,0,0)
return date < new Date(this.formData.eventStart).setHours(0, 0, 0, 0)
},
notBeforeEvent(date) {
return date <= new Date(this.formData.eventStart)

View File

@ -30,7 +30,8 @@
size="x-large"
v-if="creatEvent"
hover
class="inactive-tab-button" >
class="inactive-tab-button"
>
{{ $t('post.createNewEvent.title') }}
</ds-button>
<ds-button ghost fullwidth size="x-large" v-else @click="creatEvent = !creatEvent">
@ -102,10 +103,10 @@ export default {
<style lang="scss">
.inactive-tab-button {
background-color: #ff000000 !important;
color: "whitesmoke" !important;
color: 'whitesmoke' !important;
}
.group-create-title {
font-size: 30px;
text-align: center;
}
</style>
</style>