mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 22:40:26 +01:00
Fix cookie dialog rows not disappearing on delete (#344)
This commit is contained in:
@@ -38,7 +38,7 @@ export const CookieDialog = ({ cookieJarId }: Props) => {
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody className="divide-y divide-surface-highlight">
|
<tbody className="divide-y divide-surface-highlight">
|
||||||
{cookieJar?.cookies.map((c: Cookie) => (
|
{cookieJar?.cookies.map((c: Cookie) => (
|
||||||
<tr key={c.domain + c.raw_cookie + c.path + c.expires}>
|
<tr key={JSON.stringify(c)}>
|
||||||
<td className="py-2 select-text cursor-text font-mono font-semibold max-w-0">
|
<td className="py-2 select-text cursor-text font-mono font-semibold max-w-0">
|
||||||
{cookieDomain(c)}
|
{cookieDomain(c)}
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user