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

View File

@@ -601,10 +601,10 @@ const DatabaseModal: FunctionComponent<DatabaseModalProps> = ({
checked={db ? !!db.allow_csv_upload : false}
onChange={onInputChange}
/>
<div>{t('Allow CSV Upload')}</div>
<div>{t('Allow Data Upload')}</div>
<InfoTooltip
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>