update name
This commit is contained in:
parent
e85283c8db
commit
7170bc893d
6 changed files with 5 additions and 6 deletions
|
|
@ -4,7 +4,7 @@ import { HeaderComponent } from './shared/components/header/header.component';
|
||||||
import { SidebarComponent } from './shared/components/sidebar/sidebar.component';
|
import { SidebarComponent } from './shared/components/sidebar/sidebar.component';
|
||||||
import { LanguageService } from './services/language.service';
|
import { LanguageService } from './services/language.service';
|
||||||
import { SidebarMobileComponent } from './shared/components/sidebar/sidebar-mobile/sidebar-mobile.component';
|
import { SidebarMobileComponent } from './shared/components/sidebar/sidebar-mobile/sidebar-mobile.component';
|
||||||
import { ContactEditNewComponent } from './components/contacts/contact-edit-new/contact-edit.component';
|
import { ContactEditNewComponent } from './components/contacts/contact-edit-new/contact-edit-new.component';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { SharedService } from './services/shared.service';
|
import { SharedService } from './services/shared.service';
|
||||||
import { ContactDeleteComponent } from './components/contacts/contact-delete/contact-delete.component';
|
import { ContactDeleteComponent } from './components/contacts/contact-delete/contact-delete.component';
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@ import { Component, HostListener, Input } from '@angular/core';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { ContactsComponent } from '../contacts.component';
|
import { ContactsComponent } from '../contacts.component';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
import { ContactEditNewComponent } from '../contact-edit-new/contact-edit.component';
|
|
||||||
import { SharedService } from '../../../services/shared.service';
|
import { SharedService } from '../../../services/shared.service';
|
||||||
import { ContactNavComponent } from '../contact-nav/contact-nav.component';
|
import { ContactNavComponent } from '../contact-nav/contact-nav.component';
|
||||||
import { FirebaseService } from '../../../services/firebase.service';
|
import { FirebaseService } from '../../../services/firebase.service';
|
||||||
import { LanguageService } from '../../../services/language.service';
|
import { LanguageService } from '../../../services/language.service';
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
import { ContactEditNewComponent } from '../contact-edit-new/contact-edit-new.component';
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-contact-detail',
|
selector: 'app-contact-detail',
|
||||||
standalone: true,
|
standalone: true,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
import { ContactEditNewComponent } from './contact-edit-new.component';
|
||||||
import { ContactEditNewComponent } from './contact-edit.component';
|
|
||||||
|
|
||||||
describe('ContactEditComponent', () => {
|
describe('ContactEditComponent', () => {
|
||||||
let component: ContactEditNewComponent;
|
let component: ContactEditNewComponent;
|
||||||
|
|
@ -14,8 +14,8 @@ import { ContactFormComponent } from './contact-form/contact-form.component';
|
||||||
BtnCloseComponent,
|
BtnCloseComponent,
|
||||||
TranslateModule,
|
TranslateModule,
|
||||||
],
|
],
|
||||||
templateUrl: './contact-edit.component.html',
|
templateUrl: './contact-edit-new.component.html',
|
||||||
styleUrl: './contact-edit.component.scss',
|
styleUrl: './contact-edit-new.component.scss',
|
||||||
})
|
})
|
||||||
export class ContactEditNewComponent {
|
export class ContactEditNewComponent {
|
||||||
@Input() currentUserId: string | undefined;
|
@Input() currentUserId: string | undefined;
|
||||||
Loading…
Reference in a new issue