Skip to content

Commit

Permalink
Feature/UI updates 1.1.1 (#13)
Browse files Browse the repository at this point in the history
* ui updates
  • Loading branch information
wardviaene authored Aug 26, 2024
1 parent 0a945a3 commit 06c6390
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/src/Routes/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function Home() {
if (error) return 'cannot retrieve licensed users'

return (
<Container my={40} size="40rem">
<Container my={45} size="45rem">
<Title ta="center" className={classes.title}>
VPN Status
</Title>
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/Routes/Home/UserStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function UserStats() {
responsive: true,
plugins: {
legend: {
position: 'right' as const,
position: 'bottom' as const,
display: true,
},
tooltip: {
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/Routes/Users/ListUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export function ListUsers({localAuthDisabled}:Props) {
<Table.Th>Role</Table.Th>
<Table.Th>Type</Table.Th>
<Table.Th>Status</Table.Th>
<Table.Th>Last Login</Table.Th>
<Table.Th>Last Web Login</Table.Th>
<Table.Th />
</Table.Tr>
</Table.Thead>
Expand Down
1 change: 1 addition & 0 deletions webapp/src/Routes/Users/NewUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export function NewUser({setShowNewUser} :Props) {
provisioned: false,
suspended: false,
lastTokenRenewal: "",
lastLogin: "",
connectionsDisabledOnAuthFailure: false,
},
validate: {
Expand Down

0 comments on commit 06c6390

Please sign in to comment.