mirror of
https://github.com/streamwall/streamwall.git
synced 2026-04-03 20:32:08 -04:00
Add city/state to control grid blocks
This commit is contained in:
@@ -742,6 +742,11 @@ export function ControlUI({
|
|||||||
<StyledGridInfo>
|
<StyledGridInfo>
|
||||||
<StyledGridLabel>{streamId}</StyledGridLabel>
|
<StyledGridLabel>{streamId}</StyledGridLabel>
|
||||||
<div>{data?.source}</div>
|
<div>{data?.source}</div>
|
||||||
|
{data?.city && (
|
||||||
|
<StyledGridLocation>
|
||||||
|
{data?.city} {data?.state}
|
||||||
|
</StyledGridLocation>
|
||||||
|
)}
|
||||||
</StyledGridInfo>
|
</StyledGridInfo>
|
||||||
</StyledGridPreviewBox>
|
</StyledGridPreviewBox>
|
||||||
)
|
)
|
||||||
@@ -1480,6 +1485,11 @@ const StyledGridLabel = styled.div`
|
|||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
`
|
`
|
||||||
|
|
||||||
|
const StyledGridLocation = styled.div`
|
||||||
|
font-size: 13px;
|
||||||
|
opacity: 0.75;
|
||||||
|
`
|
||||||
|
|
||||||
const StyledGridInputs = styled.div`
|
const StyledGridInputs = styled.div`
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user