mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-24 02:07:58 +00:00
set connection id on start
This commit is contained in:
@@ -10,6 +10,11 @@
|
||||
<td><span class="teamName">{{match.Id}}</span></td>
|
||||
<td><span class="teamScore"> {{match.Host}} vs {{match.Guest}} </span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<span class="match-th">{{connection}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="chat-table">
|
||||
|
||||
@@ -10,6 +10,7 @@ import { FeedService } from '../services/feed.service';
|
||||
export class ChatComponent implements OnInit {
|
||||
|
||||
@Input() matches: Match[];
|
||||
@Input() connection: string;
|
||||
messages: ChatMessage[];
|
||||
|
||||
constructor(private feedService: FeedService) { }
|
||||
|
||||
Reference in New Issue
Block a user