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