Skip to content

Commit 724d3c8

Browse files
committed
fix: Resolves large keywords breaking the keywords table ui
1 parent 7e8840c commit 724d3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/keywords/Keyword.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const Keyword = (props: KeywordProps) => {
9999
<Icon type="check" size={10} />
100100
</button>
101101
<a
102-
className='py-2 hover:text-blue-600 lg:flex lg:items-center lg:w-full'
102+
className='py-2 hover:text-blue-600 lg:flex lg:items-center lg:w-full lg:max-w-[200px]'
103103
onClick={() => showKeywordDetails()}>
104104
<span className={`fflag fflag-${country} w-[18px] h-[12px] mr-2`} title={countries[country][0]} />
105105
<span className=' text-ellipsis overflow-hidden whitespace-nowrap w-[calc(100%-30px)]'>{keyword}{city ? ` (${city})` : ''}</span>

0 commit comments

Comments
 (0)