Skip to content

Commit

Permalink
fix: set mpd as href
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalygashkov committed Dec 29, 2024
1 parent b2da0d6 commit 7608913
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": "azot",
"version": "0.8.1",
"version": "0.8.2",
"description": "Swiss Army knife for pentesting DRM systems",
"type": "module",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/extension/entrypoints/popup/components/keys-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const KeysList: Component<KeysListProps> = (props) => {
<a
title={mpd || url}
target="_blank"
href={url}
href={mpd || url}
class="w-fit truncate hover:underline hover:text-blue-500"
>
{shorten(mpd || url)}
Expand Down

0 comments on commit 7608913

Please sign in to comment.