Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-1803 (pull request #473)
Browse files Browse the repository at this point in the history
Removed delete from providers
  • Loading branch information
rmathis committed Apr 20, 2021
2 parents 900ce9b + a5280e5 commit 070883f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ <h2 class="mb-4" [ngSwitch]="type$ | async">
<ng-container *ngSwitchDefault><translate-i18n key="label.provider">Provider</translate-i18n></ng-container>
Configuration
</h2>
<div class="container" id="header">
<div class="container" id="header" [ngSwitch]="type$ | async">
<metadata-header
[isEnabled]="isEnabled$ | async"
[version]="model$ | async"
[isCurrent]="true">
<button class="btn btn-outline btn-sm btn-danger align-self-start" (click)="deleteResolver(id)">
<button class="btn btn-outline btn-sm btn-danger align-self-start" (click)="deleteResolver(id)" *ngSwitchCase="'resolver'">
<translate-i18n key="action.delete">Delete</translate-i18n>
<i class="fa fa-trash ml-2"></i>
</button>
Expand Down

0 comments on commit 070883f

Please sign in to comment.