chore: Text change Allow Data Upload (#11736)

* chore: Text change Allow CSV/Excel Upload

today there are 2 ways of uploading data CSV or Excel
config on the database allow_csv_upload applies to both options
so the client facing text should also indicate that

* Allow Data Upload
This commit is contained in:
Amit Miran 2020-11-19 12:05:14 +02:00 committed by GitHub
parent 8bdf943687
commit c79dc4763b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -601,10 +601,10 @@ const DatabaseModal: FunctionComponent<DatabaseModalProps> = ({
checked={db ? !!db.allow_csv_upload : false} checked={db ? !!db.allow_csv_upload : false}
onChange={onInputChange} onChange={onInputChange}
/> />
<div>{t('Allow CSV Upload')}</div> <div>{t('Allow Data Upload')}</div>
<InfoTooltip <InfoTooltip
tooltip={t( tooltip={t(
'If selected, please set the schemas allowed for csv upload in Extra.', 'If selected, please set the schemas allowed for data upload in Extra.',
)} )}
/> />
</div> </div>