mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix few accessibility related issues. #6991
This commit is contained in:
@@ -83,6 +83,7 @@ export function InputComponent({ label, serverList, databaseList, schemaList, di
|
||||
<Grid item lg={4} md={4} sm={4} xs={4} className={classes.inputLabel}>
|
||||
<InputSelect
|
||||
options={serverList}
|
||||
optionsReloadBasis={serverList?.length}
|
||||
onChange={changeServer}
|
||||
value={selectedServer}
|
||||
controlProps={
|
||||
@@ -97,6 +98,7 @@ export function InputComponent({ label, serverList, databaseList, schemaList, di
|
||||
<Grid item lg={3} md={3} sm={3} xs={3} className={classes.inputLabel}>
|
||||
<InputSelect
|
||||
options={databaseList}
|
||||
optionsReloadBasis={databaseList?.length}
|
||||
onChange={changeDatabase}
|
||||
value={selectedDatabase}
|
||||
controlProps={
|
||||
@@ -112,6 +114,7 @@ export function InputComponent({ label, serverList, databaseList, schemaList, di
|
||||
<Grid item lg={3} md={3} sm={3} xs={3} className={classes.inputLabel}>
|
||||
<InputSelect
|
||||
options={schemaList}
|
||||
optionsReloadBasis={schemaList?.length}
|
||||
onChange={changeSchema}
|
||||
value={selectedSchema}
|
||||
controlProps={
|
||||
|
||||
@@ -192,7 +192,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||
height: '100%',
|
||||
width: '100%',
|
||||
resize: 'none'
|
||||
}}/>
|
||||
}} title={gettext('Scratch Pad')}/>
|
||||
}),
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user