diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-04-13 00:59:38 +0200 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-04-13 00:59:38 +0200 |
commit | da36bf6c2238b182c2340fb46a3f54aabe40528c (patch) | |
tree | 8e8f55c04a9832f7c5f7e8eb376dbd5eaaab4f3d /frontend/src/app/_elements | |
parent | 597e7f19c5ee92a4161a2b784e2dd4a8fd674cc7 (diff) | |
parent | fbcbcfe276b12d912ab9857570860410bee943c1 (diff) |
Merge branch 'SignalR-WebSocket' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
# Conflicts:
# frontend/src/app/app.module.ts
Diffstat (limited to 'frontend/src/app/_elements')
-rw-r--r-- | frontend/src/app/_elements/notifications/notifications.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/app/_elements/notifications/notifications.component.ts b/frontend/src/app/_elements/notifications/notifications.component.ts index 82613448..5863f669 100644 --- a/frontend/src/app/_elements/notifications/notifications.component.ts +++ b/frontend/src/app/_elements/notifications/notifications.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { WebSocketService } from 'src/app/_services/web-socket.service'; +import { SignalRService } from 'src/app/_services/signal-r.service'; import Notification from 'src/app/_data/Notification'; @Component({ @@ -12,7 +12,7 @@ export class NotificationsComponent implements OnInit { notifications?: Notification[]; closed: boolean = false; - constructor(private wsService: WebSocketService) { + constructor(private signalRService:SignalRService) { this.notifications = [ new Notification("Titanik (Preziveli)", "79768456867", 0.2), new Notification("Test Prediktor 1", "56758768678", 0.4), |