Skip to content

Commit

Permalink
release: v0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
moeakwak committed Jun 9, 2024
1 parent 66051ca commit 0779f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easy-panel",
"version": "0.3.8",
"version": "0.3.9",
"private": true,
"type": "module",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function PoekmonSharedCookieConfigSheet({ instanceDetails }: { instanceDe
<TableRow key={index}>
<TableCell>{cookie.name}</TableCell>
<TableCell>{cookie.value}</TableCell>
<TableCell>{new Date(cookie.expired_at).toLocaleString()}</TableCell>
<TableCell>{cookie.expired_at ? new Date(cookie.expired_at).toLocaleString() : "-"}</TableCell>
</TableRow>
))}
{field.value.length === 0 && (
Expand Down

0 comments on commit 0779f4f

Please sign in to comment.