SM-261: Remove Import Secrets button (#4225)
This commit is contained in:
parent
a303bf33f7
commit
7df799f536
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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">
|
||||||
|
|
|
@ -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>();
|
||||||
|
|
||||||
|
|
|
@ -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">
|
||||||
|
|
|
@ -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>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue