fix: database version field (#25898)

This commit is contained in:
Beto Dealmeida 2023-11-07 20:55:03 -05:00 committed by GitHub
parent 1d0b86ae94
commit 06ffcd29e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -541,7 +541,7 @@ const ExtraOptions = ({
</div>
<div className="input-container" data-test="version-spinbutton-test">
<input
type="number"
type="text"
name="version"
placeholder={t('Version number')}
onChange={onExtraInputChange}
@ -550,8 +550,8 @@ const ExtraOptions = ({
</div>
<div className="helper">
{t(
'Specify the database version. This should be used with ' +
'Presto in order to enable query cost estimation.',
'Specify the database version. This is used with Presto for query cost ' +
'estimation, and Dremio for syntax changes, among others.',
)}
</div>
</StyledInputContainer>