diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-03-22 14:18:52 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-03-29 09:44:59 +0100 |
commit | 17bbc381c796efc51326c96e77c0fe7294c6a010 (patch) | |
tree | 7f996381da21d22e128d81aa288f8c3335cc704c /server/sonar-web/src/main/js/components/ui | |
parent | 616f0b1daf61d1040052906a649a201e26a4f376 (diff) | |
download | sonarqube-17bbc381c796efc51326c96e77c0fe7294c6a010.tar.gz sonarqube-17bbc381c796efc51326c96e77c0fe7294c6a010.zip |
Update React, Typescript and Eslint dependencies
* Fix ts and eslint issues
* Drop forSingleOrganization
* Update Typscript on extensions
Diffstat (limited to 'server/sonar-web/src/main/js/components/ui')
-rw-r--r-- | server/sonar-web/src/main/js/components/ui/Alert.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/ui/Alert.tsx b/server/sonar-web/src/main/js/components/ui/Alert.tsx index af8579d7a81..8e4e37cfe17 100644 --- a/server/sonar-web/src/main/js/components/ui/Alert.tsx +++ b/server/sonar-web/src/main/js/components/ui/Alert.tsx @@ -35,7 +35,7 @@ export interface AlertProps { variant: AlertVariant; } -export function Alert(props: AlertProps & React.HTMLAttributes<HTMLElement>) { +export function Alert(props: AlertProps & React.HTMLAttributes<HTMLDivElement>) { const { className, display, variant, ...domProps } = props; return ( <div |