Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintShit committed Mar 1, 2024
2 parents f606f5f + b2ad111 commit db53013
Show file tree
Hide file tree
Showing 6 changed files with 108 additions and 88 deletions.
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from config import DOCS, XRAY_SUBSCRIPTION_PATH

__version__ = "0.4.8"
__version__ = "0.4.9"


app = FastAPI(
Expand Down
4 changes: 2 additions & 2 deletions app/dashboard/build/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="msapplication-config" content="/favicon/browserconfig.xml" />
<meta name="theme-color" content="#3B81F6" />
<script type="module" crossorigin src="/dashboard/assets/index.2b7109a2.js"></script>
<link rel="modulepreload" crossorigin href="/dashboard/assets/vendor.8aa8dc93.js">
<script type="module" crossorigin src="/dashboard/assets/index.2e9c394e.js"></script>
<link rel="modulepreload" crossorigin href="/dashboard/assets/vendor.764109dc.js">
<link rel="stylesheet" href="/dashboard/assets/index.59de2328.css">
</head>
<body>
Expand Down
14 changes: 14 additions & 0 deletions app/dashboard/build/assets/index.2e9c394e.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions app/dashboard/build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="msapplication-config" content="/favicon/browserconfig.xml" />
<meta name="theme-color" content="#3B81F6" />
<script type="module" crossorigin src="/dashboard/assets/index.2b7109a2.js"></script>
<link rel="modulepreload" crossorigin href="/dashboard/assets/vendor.8aa8dc93.js">
<script type="module" crossorigin src="/dashboard/assets/index.2e9c394e.js"></script>
<link rel="modulepreload" crossorigin href="/dashboard/assets/vendor.764109dc.js">
<link rel="stylesheet" href="/dashboard/assets/index.59de2328.css">
</head>
<body>
Expand Down
10 changes: 8 additions & 2 deletions app/dashboard/src/components/UsersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,16 @@ export const UsersTable: FC<UsersTableProps> = (props) => {
onClick={toggleAccordion.bind(null, i)}
cursor="pointer"
>
<Td borderBottom={0} minW="100px" pl={4} pr={4}>
<Td
borderBottom={0}
minW="100px"
pl={4}
pr={4}
maxW="calc(100vw - 50px - 32px - 100px - 48px)"
>
<div className="flex-status">
<OnlineBadge lastOnline={user.online_at} />
{user.username}
<Text isTruncated>{user.username}</Text>
</div>
</Td>
<Td borderBottom={0} minW="50px" pl={0} pr={0}>
Expand Down

0 comments on commit db53013

Please sign in to comment.