diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-08-31 15:51:50 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-09-07 20:20:56 +0200 |
commit | 0bb06ba33833577cfabb75c66c5a143b5ec7a123 (patch) | |
tree | 8acdd8d8712374af19cc2f895231dd49662e0f18 /server/sonar-web/src/main/js | |
parent | 469af3846a5ca3f78b2b190ec4a2b27e3c7fd11f (diff) | |
download | sonarqube-0bb06ba33833577cfabb75c66c5a143b5ec7a123.tar.gz sonarqube-0bb06ba33833577cfabb75c66c5a143b5ec7a123.zip |
SONAR-11185 rewrite portfolios admin page in ts (#664)
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts index 36abc33bb09..9662a9ea600 100644 --- a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts +++ b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts @@ -58,6 +58,8 @@ import BranchIcon from '../../../components/icons-components/BranchIcon'; import LongLivingBranchIcon from '../../../components/icons-components/LongLivingBranchIcon'; import PullRequestIcon from '../../../components/icons-components/PullRequestIcon'; import ActionsDropdown, { ActionsDropdownItem } from '../../../components/controls/ActionsDropdown'; +import ConfirmButton from '../../../components/controls/ConfirmButton'; +import SimpleModal from '../../../components/controls/SimpleModal'; const exposeLibraries = () => { const global = window as any; @@ -77,6 +79,7 @@ const exposeLibraries = () => { Checkbox, CheckIcon, ClearIcon, + ConfirmButton, CoverageRating, DateFormatter, DateFromNow, @@ -103,6 +106,7 @@ const exposeLibraries = () => { SearchBox, Select, SelectList, + SimpleModal, SubmitButton, Suggestions, Tooltip |