Merge pull request #8369 from jwangyangls/fixSomeIssue

Fix issue
This commit is contained in:
jwangyangls 2019-07-25 10:20:05 +08:00 committed by GitHub
commit 8a6a4addb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@harbor/ui",
"version": "1.8.0-rc2",
"version": "1.9.0",
"description": "Harbor shared UI components based on Clarity and Angular7",
"author": "CNCF",
"module": "index.js",

View File

@ -1,6 +1,6 @@
{
"name": "harbor",
"version": "1.8.0",
"version": "1.9.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "harbor",
"version": "1.8.0",
"version": "1.9.0",
"description": "Harbor UI with Clarity",
"angular-cli": {},
"scripts": {

View File

@ -45,7 +45,7 @@ registerLocaleData(localePt, 'pt-br');
export function initConfig(configService: AppConfigService, skinableService: SkinableConfig) {
return () => {
skinableService.getCustomFile();
skinableService.getCustomFile().subscribe();
configService.load().subscribe();
};
}

View File

@ -109,6 +109,7 @@ export class AddHttpAuthGroupComponent implements OnInit {
this.currentForm.reset();
this.addHttpAuthOpened = true;
this.role_id = 1;
this.inlineAlert.close();
}