feat: Update merge_brazil_contacts option to match minimum required version

The merge_brazil_contacts option in the chatwoot settings has been updated to match the minimum required version of 1.7.5. This ensures compatibility with the latest features and improvements.
This commit is contained in:
Deivison Lincoln 2024-05-09 14:42:52 -03:00
parent 597ef38c9a
commit 9f69e15122

View File

@ -234,13 +234,13 @@
<div>
<v-checkbox
v-model="chatwootData.merge_brazil_contacts"
:disabled="loading || !AppStore.versionSatisfies('>=1.7.4')"
:disabled="loading || !AppStore.versionSatisfies('>=1.7.5')"
:hint="
!AppStore.versionSatisfies('>=1.7.4')
? $t('version.availableFrom', { version: '1.7.4' })
!AppStore.versionSatisfies('>=1.7.5')
? $t('version.availableFrom', { version: '1.7.5' })
: undefined
"
:persistent-hint="!AppStore.versionSatisfies('>=1.7.4')"
:persistent-hint="!AppStore.versionSatisfies('>=1.7.5')"
hide-details="auto"
class="mb-3"
density="compact"