Skip to content

Commit

Permalink
chore: Text change Allow Data Upload (apache#11736)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
amitmiran137 authored and auxten committed Nov 20, 2020
1 parent db421e1 commit f1033eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit f1033eb

Please sign in to comment.