fix: removing unsupported modal sizes (#10625)

* fix: removing unsupported modal sizes

* linting!

* NOT specifying bsSize seems to have the same effect as (unsupported) "medium"

* supporting 'large' and 'small' over 'lg' and 'sm'
This commit is contained in:
Evan Rusackas
2020-08-18 14:33:39 -07:00
committed by GitHub
parent ca5dc4256f
commit 844b471509
8 changed files with 6 additions and 10 deletions

View File

@@ -120,7 +120,7 @@ const ChangeDatasourceModal: FunctionComponent<ChangeDatasourceModalProps> = ({
};
return (
<Modal show={show} onHide={onHide} onEnter={onEnterModal} bsSize="lg">
<Modal show={show} onHide={onHide} onEnter={onEnterModal} bsSize="large">
<Modal.Header closeButton>
<Modal.Title>{t('Select a datasource')}</Modal.Title>
</Modal.Header>