aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/comment/comment.component.ts
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:06:08 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:06:08 +0200
commit8434044dcf8cec14765aa5d96072feaa2560a823 (patch)
tree9cb7776d560f3ae890f12053c4c4f60a52a69e59 /src/app/components/comment/comment.component.ts
parente8fef550d576aa3eba9d51ea70a3beeac6157ba5 (diff)
downloadDevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.tar
DevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.tar.gz
DevHive-Angular-8434044dcf8cec14765aa5d96072feaa2560a823.zip
Fixed includes (for models) of all components
Diffstat (limited to 'src/app/components/comment/comment.component.ts')
-rw-r--r--src/app/components/comment/comment.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/components/comment/comment.component.ts b/src/app/components/comment/comment.component.ts
index d4dd9f4..7da896d 100644
--- a/src/app/components/comment/comment.component.ts
+++ b/src/app/components/comment/comment.component.ts
@@ -3,8 +3,8 @@ import { Router } from '@angular/router';
import { Guid } from 'guid-typescript';
import { CommentService } from 'src/app/services/comment.service';
import { UserService } from 'src/app/services/user.service';
-import { Comment } from 'src/models/comment';
-import { User } from 'src/models/identity/user';
+import { Comment } from 'src/models/comment.model';
+import { User } from 'src/models/identity/user.model';
@Component({
selector: 'app-comment',