Skip to content

Commit

Permalink
Few more relative imports fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
JeltevanBoheemen committed Aug 13, 2024
1 parent f343938 commit 68a18ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/about/about.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnInit } from '@angular/core';
import { SafeHtml, Title } from '@angular/platform-browser';
import { environment } from '@environments/environment';
import { DialogService } from '../services';
import { DialogService } from '@services';

@Component({
selector: 'ia-about',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component } from '@angular/core';
import { actionIcons, formIcons } from '@shared/icons';
import { ApiService } from '../../services';
import { APIEditableCorpus, CorpusDefinition } from '@models/corpus-definition';
import * as _ from 'lodash';
import { Router } from '@angular/router';
import { HttpErrorResponse } from '@angular/common/http';
import { Subject } from 'rxjs';
import { ApiService } from '@services';

@Component({
selector: 'ia-create-definition',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/dialog/dialog.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {Router} from '@angular/router';
import { SafeHtml } from '@angular/platform-browser';
import { Subscription } from 'rxjs';

import { DialogService } from './../services/index';
import { navIcons } from '@shared/icons';
import { DialogService } from '@services';

@Component({
selector: 'ia-dialog',
Expand Down

0 comments on commit 68a18ac

Please sign in to comment.