SM-261: Remove Import Secrets button (#4225)

This commit is contained in:
Colton Hurst 2022-12-14 18:04:45 -05:00 committed by GitHub
parent a303bf33f7
commit 7df799f536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 13 deletions

View File

@ -5556,9 +5556,6 @@
"newServiceAccount":{ "newServiceAccount":{
"message":"New Service Account" "message":"New Service Account"
}, },
"importSecrets":{
"message":"Import Secrets"
},
"secretsNoItemsTitle":{ "secretsNoItemsTitle":{
"message":"No secrets to show" "message":"No secrets to show"
}, },

View File

@ -9,10 +9,6 @@
<i class="bwi bwi-plus" aria-hidden="true"></i> <i class="bwi bwi-plus" aria-hidden="true"></i>
{{ "newProject" | i18n }} {{ "newProject" | i18n }}
</button> </button>
<button bitButton buttonType="secondary" (click)="importSecretsEvent.emit()">
<i class="bwi bwi-save tw-rotate-180" aria-hidden="true"></i>
{{ "importSecrets" | i18n }}
</button>
</sm-no-items> </sm-no-items>
<bit-table *ngIf="projects?.length >= 1"> <bit-table *ngIf="projects?.length >= 1">

View File

@ -24,7 +24,6 @@ export class ProjectsListComponent implements OnDestroy {
@Output() deleteProjectEvent = new EventEmitter<ProjectListView[]>(); @Output() deleteProjectEvent = new EventEmitter<ProjectListView[]>();
@Output() onProjectCheckedEvent = new EventEmitter<string[]>(); @Output() onProjectCheckedEvent = new EventEmitter<string[]>();
@Output() newProjectEvent = new EventEmitter(); @Output() newProjectEvent = new EventEmitter();
@Output() importSecretsEvent = new EventEmitter();
private destroy$: Subject<void> = new Subject<void>(); private destroy$: Subject<void> = new Subject<void>();

View File

@ -9,10 +9,6 @@
<i class="bwi bwi-plus" aria-hidden="true"></i> <i class="bwi bwi-plus" aria-hidden="true"></i>
{{ "newSecret" | i18n }} {{ "newSecret" | i18n }}
</button> </button>
<button bitButton buttonType="secondary" (click)="importSecretsEvent.emit()">
<i class="bwi bwi-save tw-rotate-180" aria-hidden="true"></i>
{{ "importSecrets" | i18n }}
</button>
</sm-no-items> </sm-no-items>
<bit-table *ngIf="secrets?.length >= 1"> <bit-table *ngIf="secrets?.length >= 1">

View File

@ -26,7 +26,6 @@ export class SecretsListComponent implements OnDestroy {
@Output() onSecretCheckedEvent = new EventEmitter<string[]>(); @Output() onSecretCheckedEvent = new EventEmitter<string[]>();
@Output() deleteSecretsEvent = new EventEmitter<string[]>(); @Output() deleteSecretsEvent = new EventEmitter<string[]>();
@Output() newSecretEvent = new EventEmitter(); @Output() newSecretEvent = new EventEmitter();
@Output() importSecretsEvent = new EventEmitter();
private destroy$: Subject<void> = new Subject<void>(); private destroy$: Subject<void> = new Subject<void>();