mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-31 09:22:49 -05:00
Display city and state in stream list
This commit is contained in:
@@ -980,7 +980,7 @@ function StreamDelayBox({
|
|||||||
|
|
||||||
function StreamLine({
|
function StreamLine({
|
||||||
id,
|
id,
|
||||||
row: { label, source, link, notes },
|
row: { label, source, link, notes, city, state },
|
||||||
disabled,
|
disabled,
|
||||||
onClickId,
|
onClickId,
|
||||||
}: {
|
}: {
|
||||||
@@ -1007,7 +1007,7 @@ function StreamLine({
|
|||||||
label
|
label
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
<strong>{source}</strong>{' '}
|
<strong>{source}</strong> {city ? `(${city} ${state}) ` : ''}
|
||||||
<a href={link} target="_blank">
|
<a href={link} target="_blank">
|
||||||
{truncate(link, { length: 55 })}
|
{truncate(link, { length: 55 })}
|
||||||
</a>{' '}
|
</a>{' '}
|
||||||
|
|||||||
Reference in New Issue
Block a user