forked from github-starred/komodo
fix update sheet trigger, scrolling
This commit is contained in:
@@ -22,9 +22,7 @@ export const DesktopUpdates = () => {
|
||||
<DropdownMenuContent className="w-[500px]">
|
||||
<DropdownMenuGroup>
|
||||
{updates?.map((update) => (
|
||||
<div className="px-2 py-4 hover:bg-muted transition-colors border-b last:border-none">
|
||||
<SingleUpdate update={update} />
|
||||
</div>
|
||||
<SingleUpdate update={update} />
|
||||
))}
|
||||
</DropdownMenuGroup>
|
||||
</DropdownMenuContent>
|
||||
|
||||
@@ -54,7 +54,7 @@ export const UpdateDetails = ({
|
||||
return (
|
||||
<Sheet>
|
||||
<SheetTrigger asChild>{children}</SheetTrigger>
|
||||
<SheetContent position="right" size="lg">
|
||||
<SheetContent position="right" size="lg" className="overflow-scroll">
|
||||
<SheetHeader className="mb-4">
|
||||
<SheetTitle>
|
||||
{update.operation
|
||||
|
||||
Reference in New Issue
Block a user