We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4f14d commit a617074Copy full SHA for a617074
packages/streamwall-shared/src/types.ts
@@ -31,6 +31,8 @@ export interface StreamData extends ContentDisplayOptions {
31
source?: string
32
notes?: string
33
status?: string
34
+ city?: string
35
+ state?: string
36
_id: string
37
_dataSource: string
38
}
packages/streamwall/src/renderer/overlay.tsx
@@ -77,7 +77,15 @@ function Overlay({
77
isListening={isListening}
78
>
79
<StreamIcon url={content.url} />
80
- <span>{data.label}</span>
+ <span>
81
+ {data.label ? (
82
+ data.label
83
+ ) : (
84
+ <>
85
+ {data.source} – {data.city} {data.state}
86
+ </>
87
+ )}
88
+ </span>
89
{(isListening || isBackgroundListening) && <FaVolumeUp />}
90
</StreamTitle>
91
)}
0 commit comments