diff --git a/angular.json b/angular.json index 21c24d4..e433b78 100644 --- a/angular.json +++ b/angular.json @@ -37,13 +37,13 @@ "budgets": [ { "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1mb" + "maximumWarning": "1mb", + "maximumError": "2mb" }, { "type": "anyComponentStyle", - "maximumWarning": "100kb", - "maximumError": "400kb" + "maximumWarning": "200kb", + "maximumError": "500kb" } ], "outputHashing": "all" diff --git a/src/app/app.component.html b/src/app/app.component.html index 33899f3..a654136 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -16,7 +16,7 @@ Push Image Commands - diff --git a/src/app/app.component.ts b/src/app/app.component.ts index cd6a63e..f9e60b3 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -290,6 +290,10 @@ export class AppComponent implements OnInit { this.searchFilterService.toggleFavorite(repository.name); } + clearSearchHistory(): void { + this.searchFilterService.clearSearchHistory(); + } + // Delete operations async deleteTag(repository: Repository, tag: Tag): Promise { const isLastTag = await this.registryService.isLastTag(repository.name);