This commit is contained in:
Julien Nahum
2024-02-01 18:21:34 +01:00
9 changed files with 17 additions and 20 deletions

View File

@@ -230,7 +230,7 @@ export default {
classes += '-mx-4 px-4 -my-1 py-1 group/nffield relative transition-colors'
if (this.beingEdited) {
classes += ' bg-blue-50 rounded-md'
classes += ' bg-blue-50 dark:bg-gray-800 rounded-md'
}
}
return classes

View File

@@ -67,7 +67,7 @@
<small>If the submission has the same value(s) as a previous one for the selected
column(s), we will update it, instead of creating a new one.
<a href="#"
@click.prevent="$crisp.push(['do', 'helpdesk:article:open', ['en', 'how-to-update-a-page-on-form-submission-1t1jwmn']])"
@click.prevent="crisp.openHelpdeskArticle('how-to-update-a-page-on-form-submission-1t1jwmn')"
>More
info here.</a>
</small>
@@ -142,7 +142,8 @@ export default {
const {content: form} = storeToRefs(workingFormStore)
return {
form,
workingFormStore
workingFormStore,
crisp: useCrisp()
}
},
data () {