mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-29 08:22:49 -05:00
Add city/state to control grid blocks
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user