Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Nov 9, 2023
1 parent 632a0b7 commit b6f0e57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SpaceCreateVotingDateEnd.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const emit = defineEmits(['select']);
:disabled="isDisabled"
:date="date"
:date-string="dateString"
:tooltip="(!!period && !isEditing) ? $t('create.periodEnforced') : null"
:tooltip="!!period && !isEditing ? $t('create.periodEnforced') : null"
@update:date="emit('select', $event)"
/>
</template>
2 changes: 1 addition & 1 deletion src/components/SpaceCreateVotingDateStart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const emit = defineEmits(['select']);
:disabled="isDisabled"
:date="date"
:date-string="dateString"
:tooltip="(!!delay && !isEditing) ? $t('create.delayEnforced') : null"
:tooltip="!!delay && !isEditing ? $t('create.delayEnforced') : null"
@update:date="emit('select', $event)"
/>
</template>

0 comments on commit b6f0e57

Please sign in to comment.