web: fix API Drawer not opening in new tab by default
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
260f0b8710
commit
571049219f
|
@ -90,7 +90,10 @@ export class APIDrawer extends LitElement {
|
|||
${item.method}: ${item.status}
|
||||
</h2>
|
||||
</div>
|
||||
<a class="pf-c-notification-drawer__list-item-description" href=${item.path}
|
||||
<a
|
||||
class="pf-c-notification-drawer__list-item-description"
|
||||
target="_blank"
|
||||
href=${item.path}
|
||||
>${item.path}</a
|
||||
>
|
||||
</li>`;
|
||||
|
|
Reference in New Issue