Skip to content

Commit

Permalink
some small issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ssshizoprenia committed Jul 2, 2023
1 parent 72d4995 commit 7cff437
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tgui/packages/tgui/interfaces/Who.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const Who = (props, context) => {
<Window resizable width={600} height={600}>
<Window.Content scrollable>
<Stack fill vertical>
<Stack.Item mt={0.2}>
<Section fill>
{total_players !== undefined && (
{total_players !== undefined && (
<Stack.Item mt={0.2}>
<Section fill>
<WhoCollapsible title={'Players - ' + all_clients} color="good">
{total_players.map((x, index) => (
<GetPlayerInfo
Expand All @@ -32,13 +32,13 @@ export const Who = (props, context) => {
/>
))}
</WhoCollapsible>
)}
</Section>
</Stack.Item>
</Section>
</Stack.Item>
)}
<Stack.Item height="6px" />
<Stack.Item mt={0.2} grow>
<Section fill>
{admin && (
{admin && (
<Stack.Item mt={0.2} grow>
<Section fill>
<WhoCollapsible title="Information" color="olive">
<Box direction="column">
{additional_info !== undefined &&
Expand Down Expand Up @@ -70,9 +70,9 @@ export const Who = (props, context) => {
))}
</Box>
</WhoCollapsible>
)}
</Section>
</Stack.Item>
</Section>
</Stack.Item>
)}
</Stack>
</Window.Content>
</Window>
Expand Down

0 comments on commit 7cff437

Please sign in to comment.