Skip to content

Commit 2e6f3b2

Browse files
committed
Progress.
1 parent cf6090a commit 2e6f3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

browser-extension/tests/playground/claude.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,14 +370,14 @@ export const ClaudePrototype = () => {
370370
<button
371371
type='button'
372372
onClick={() => setShowFilters(!showFilters)}
373-
className='p-1.5 hover:bg-gray-100 rounded'
373+
className={`p-1.5 hover:bg-gray-100 rounded ${showFilters ? 'bg-gray-100' : ''}`}
374374
title='Filter options'
375375
>
376376
<Filter className='w-4 h-4 text-gray-600' />
377377
</button>
378378
</div>
379379
{showFilters && (
380-
<div className='absolute top-full left-0 mt-1 p-3 bg-white border border-gray-300 rounded-md shadow-lg z-10 min-w-48'>
380+
<div className='absolute top-full right-0 mt-1 p-3 bg-white border border-gray-300 rounded-md shadow-lg z-10 min-w-48'>
381381
<div className='space-y-2'>
382382
<label className='flex items-center gap-2 cursor-pointer'>
383383
<input

0 commit comments

Comments
 (0)