Add city/state to control grid blocks

This commit is contained in:
Max Goodhart
2026-01-24 15:41:43 -08:00
parent baef3eefbe
commit 6bca751f54

View File

@@ -742,6 +742,11 @@ export function ControlUI({
<StyledGridInfo>
<StyledGridLabel>{streamId}</StyledGridLabel>
<div>{data?.source}</div>
{data?.city && (
<StyledGridLocation>
{data?.city} {data?.state}
</StyledGridLocation>
)}
</StyledGridInfo>
</StyledGridPreviewBox>
)
@@ -1480,6 +1485,11 @@ const StyledGridLabel = styled.div`
font-size: 30px;
`
const StyledGridLocation = styled.div`
font-size: 13px;
opacity: 0.75;
`
const StyledGridInputs = styled.div`
position: absolute;
top: 0;