Skip to content

Commit 9ff430c

Browse files
committed
chore(concierge): tweak to previous commit
1 parent b91ea57 commit 9ff430c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/concierge/src/app/signage/search-overlay.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { MatRippleModule } from '@angular/material/core';
1313
import { IconComponent, TranslatePipe } from '@placeos/components';
1414

1515
interface SearchItem {
16-
id: string | number;
16+
id: string;
1717
name: string;
1818
}
1919

apps/concierge/src/app/signage/signage-displays.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ export class SignageDisplaysComponent {
436436
});
437437
}
438438

439-
public async addPlaylist(playlist: SignagePlaylist) {
439+
public async addPlaylist(playlist: Partial<SignagePlaylist>) {
440440
const display = this.active_display();
441441
const trigger = this.active_trigger();
442442
const item = trigger || display;

apps/concierge/src/app/signage/signage-zones.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export class SignageZonesComponent {
244244
});
245245
}
246246

247-
public async addPlaylist(playlist: SignagePlaylist) {
247+
public async addPlaylist(playlist: Partial<SignagePlaylist>) {
248248
const zone = this.active_zone();
249249
const trigger = this.active_trigger();
250250
const item = trigger || zone;

0 commit comments

Comments
 (0)