Skip to content

Commit d17b93f

Browse files
authored
Merge pull request #3213 from siulong/mcp-view
fix(marketplace): conditionally apply header positioning class,avoid the GitHub feedback link at the bottom not being clickable.
2 parents 3940691 + 7238628 commit d17b93f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/slow-goats-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"kilo-code": patch
3+
---
4+
5+
Fixed the GitHub feedback link at the bottom of the marketplace not being clickable.

webview-ui/src/components/marketplace/MarketplaceView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ export function MarketplaceView({ stateManager, onDone, targetTab, hideHeader =
119119

120120
return (
121121
<TooltipProvider delayDuration={300}>
122-
{/* kilocode_change: add className relative */}
123-
<Tab className="relative">
122+
{/* kilocode_change: header conditionally className relative or fixed */}
123+
<Tab className={cn(hideHeader ? "relative" : "fixed")}>
124124
{/* kilocode_change: display header conditionally */}
125125
<TabHeader
126126
style={{ display: hideHeader ? "none" : "flex" }}

0 commit comments

Comments
 (0)