Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ui/src/routes/devices.$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,7 @@ export default function KvmIdRoute() {
<button className="absolute top-0" tabIndex={-1} id="videoFocusTrap" />
</div>
</FocusTrap>

<div className="grid h-full select-none grid-rows-headerBody">
<DashboardNavbar
primaryLinks={isOnDevice ? [] : [{ title: "Cloud Devices", to: "/devices" }]}
Expand All @@ -795,7 +796,7 @@ export default function KvmIdRoute() {
kvmName={deviceName || "JetKVM Device"}
/>

<div className="relative z-50 flex h-full w-full overflow-hidden">
<div className="relative flex h-full w-full overflow-hidden">
<WebRTCVideo />
<div
style={{ animationDuration: "500ms" }}
Expand All @@ -811,7 +812,7 @@ export default function KvmIdRoute() {
</div>

<div
className="isolate"
className="z-50"
onKeyUp={e => e.stopPropagation()}
onKeyDown={e => {
e.stopPropagation();
Expand Down
Loading