Add path shortcuts to all paths in the system.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { MenuSelectionDirective } from './menu-selection.directive';
|
||||
import { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';
|
||||
import {ElementRef, Renderer2} from '@angular/core';
|
||||
|
||||
describe('MenuSelectionDirective', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { MenuToggleDirective } from './menu-toggle.directive';
|
||||
import { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';
|
||||
import {ElementRef, Renderer2} from '@angular/core';
|
||||
|
||||
describe('MenuToggleDirective', () => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { FooterComponent } from './footer.component';
|
||||
import { FooterComponent } from '@app/shared/footer/footer.component';
|
||||
|
||||
describe('FooterComponent', () => {
|
||||
let component: FooterComponent;
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { TopbarComponent } from './topbar/topbar.component';
|
||||
import { FooterComponent } from './footer/footer.component';
|
||||
import { SidebarComponent } from './sidebar/sidebar.component';
|
||||
import { MenuSelectionDirective } from './_directives/menu-selection.directive';
|
||||
import { MenuToggleDirective } from './_directives/menu-toggle.directive';
|
||||
import { TopbarComponent } from '@app/shared/topbar/topbar.component';
|
||||
import { FooterComponent } from '@app/shared/footer/footer.component';
|
||||
import { SidebarComponent } from '@app/shared/sidebar/sidebar.component';
|
||||
import { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';
|
||||
import { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';
|
||||
import {RouterModule} from '@angular/router';
|
||||
import {MatIconModule} from '@angular/material/icon';
|
||||
import {TokenRatioPipe} from './_pipes/token-ratio.pipe';
|
||||
import {TokenRatioPipe} from '@app/shared/_pipes/token-ratio.pipe';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { SidebarComponent } from './sidebar.component';
|
||||
import { SidebarComponent } from '@app/shared/sidebar/sidebar.component';
|
||||
|
||||
describe('SidebarComponent', () => {
|
||||
let component: SidebarComponent;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { TopbarComponent } from './topbar.component';
|
||||
import { TopbarComponent } from '@app/shared/topbar/topbar.component';
|
||||
|
||||
describe('TopbarComponent', () => {
|
||||
let component: TopbarComponent;
|
||||
|
||||
Reference in New Issue
Block a user