Skip to content

Commit

Permalink
fix (ui): fixed client label in streams/client tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Lukas committed Feb 18, 2022
1 parent 5dd3610 commit fe1eb8d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions src/hydraplay/server/static/player/main.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export class StreamItemComponent implements OnInit {
}

selectStream() {
console.log(this.stream.id);
this.snapcastservice.setStream(this.stream.id, this.group.id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ZoneControlComponent implements OnInit {
group.clients.forEach((client) =>{
let _client = {
id: client.id,
name: client.name? client.name:client.host.name,
name: client.config.name? client.config.name : client.host.name,
selected: (this.group.id == group.id )
}
this.clients.push(_client);
Expand Down

0 comments on commit fe1eb8d

Please sign in to comment.