aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/notifications/notifications.component.ts
diff options
context:
space:
mode:
authorIvan Ljubisavljevic <ivan996sk@gmail.com>2022-05-05 01:34:52 +0200
committerIvan Ljubisavljevic <ivan996sk@gmail.com>2022-05-05 01:34:52 +0200
commitbdabccc6e8f4d35085a4defe61c579ea0002f798 (patch)
tree3affc7cba96164a752ab82b284638eeca50a72a8 /frontend/src/app/_elements/notifications/notifications.component.ts
parentbd13fc85e30778e0ce84ca3f066196c3e08a2e13 (diff)
parent90dfdda35ce378808b3567b0addee603112ef756 (diff)
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_elements/notifications/notifications.component.ts')
-rw-r--r--frontend/src/app/_elements/notifications/notifications.component.ts4
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 d64530b9..5716c1e6 100644
--- a/frontend/src/app/_elements/notifications/notifications.component.ts
+++ b/frontend/src/app/_elements/notifications/notifications.component.ts
@@ -24,8 +24,8 @@ export class NotificationsComponent implements OnInit {
this.signalRService.hubConnection.on("NotifyEpoch", (mName: string, mId: string, stat: string, totalEpochs: number, currentEpoch: number) => {
const existingNotification = this.notifications.find(x => x.id === mId)
const progress = ((currentEpoch + 1) / totalEpochs);
- console.log("Ukupno epoha", totalEpochs, "Trenutna epoha:", currentEpoch);
- console.log("stat:", stat);
+ //console.log("Ukupno epoha", totalEpochs, "Trenutna epoha:", currentEpoch);
+ //console.log("stat:", stat);
if (!existingNotification)
this.notifications.push(new Notification(`Treniranje modela: ${mName}`, mId, progress, true));
else {