mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 15:14:49 -06:00
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:
parent
597ef38c9a
commit
9f69e15122
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user