Skip to content

Commit

Permalink
remove service state column form stream list (#1579)
Browse files Browse the repository at this point in the history
  • Loading branch information
soson authored Jul 3, 2024
1 parent 4852a37 commit 9980820
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,6 @@ const StreamTable: VoidFunctionComponent<Props> = ({
)}
</Flex>
</Th>
<Th>
<Flex
alignItems="center"
justifyContent="space-between"
cursor="pointer"
onClick={() => onSort('serviceState')}
>
<Text>Service State</Text>
{orderBy?.sortKey === 'serviceState' && (
<Icon as={FeatherIcon} size={40} icon={orderBy?.direction === 'ASC' ? 'chevron-down' : 'chevron-up'} />
)}
</Flex>
</Th>
<Th>Activation</Th>
<Th>Actions</Th>
</Tr>
Expand Down Expand Up @@ -145,7 +132,6 @@ const StreamTable: VoidFunctionComponent<Props> = ({
</Text>
</Tooltip>
</Td>
<Td data-cy={`stream-name-${stream.streamName}`}>unkown</Td>
<Td minWidth={200}>
<InstallButton
deviceName={stream.streamName}
Expand Down

0 comments on commit 9980820

Please sign in to comment.