cambiar nombre id en html de eliminar colaborador dialog

This commit is contained in:
Mariela Bonilla 2021-07-31 21:57:36 -06:00
parent a4df983b4f
commit a9f2e0b2a3
2 changed files with 1 additions and 26 deletions

View File

@ -1,10 +1,9 @@
<form class="ds-form" *ngIf="colaborador" name="deleteForm" (ngSubmit)="confirmDelete(colaborador.id!)">
<div class="modal-body">
<jhi-alert-error></jhi-alert-error>
<p class="ds-title--small">Expulsar colaborador de encuesta</p>
<p
class="ds-subtitle"
id="jhi-delete-usuarioEncuesta-heading"
id="jhi-delete-colaborador-heading"
jhiTranslate="dataSurveyApp.usuarioEncuesta.delete.question"
[translateValues]="{ id: colaborador.id }"
>

View File

@ -1,24 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { EncuestaDeleteColaboratorDialogComponent } from './encuesta-delete-colaborator-dialog.component';
describe('EncuestaDeleteColaboratorDialogComponent', () => {
let component: EncuestaDeleteColaboratorDialogComponent;
let fixture: ComponentFixture<EncuestaDeleteColaboratorDialogComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [EncuestaDeleteColaboratorDialogComponent],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(EncuestaDeleteColaboratorDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});