Skip to content

Commit

Permalink
✨ Fix use markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
damianpumar committed Sep 12, 2024
1 parent f3789ba commit de2d9fc
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,14 @@
type="button"
class="secondary light small"
@on-click="restore(question)"
:disabled="!question.isSettingsModified"
:disabled="!question.isModified"
>
<span v-text="$t('cancel')" />
</BaseButton>
<BaseButton
type="submit"
class="primary small"
:disabled="
!question.isSettingsModified || !question.isQuestionValid
"
:disabled="!question.isModified || !question.isQuestionValid"
>
<span v-text="$t('update')" />
</BaseButton>
Expand Down

0 comments on commit de2d9fc

Please sign in to comment.