Skip to content

Commit

Permalink
fix: hide cover immediately when logs are dismissed, build for macos (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhu2000 authored Jan 17, 2023
1 parent 525678a commit a37fd9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fail-fast: false
matrix:
platform:
# - macos-latest
- macos-latest
# - windows-latest
- ubuntu-20.04

Expand Down
2 changes: 1 addition & 1 deletion src/pods/pod-logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function PodLogs({ isOpen, selectedPod, handleClose }: PodLogsPro
return (
<Transition.Root show={isOpen} as={Fragment}>
<Dialog as="div" className="relative z-10" onClose={handleClose}>
<div className="fixed inset-0 bg-black/30" aria-hidden="true" />
{isOpen && <div className="fixed inset-0 bg-black/30" aria-hidden="true" />}
<div className="fixed inset-0 overflow-hidden">
<div className="absolute inset-0 overflow-hidden">
<div className="pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10">
Expand Down

0 comments on commit a37fd9c

Please sign in to comment.