mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-11-14 11:43:12 +00:00
Able to modify link in browser input
This commit is contained in:
@@ -182,10 +182,14 @@ class ShowPlugin extends connect(store)(LitElement) {
|
||||
<button
|
||||
class="add-tab-button"
|
||||
title="Add Tab"
|
||||
@click=${() => this.addTab({
|
||||
url: "",
|
||||
id: this.uid()
|
||||
})}
|
||||
@click=${() => {
|
||||
const lengthOfTabs = this.tabs.length
|
||||
this.addTab({
|
||||
url: "",
|
||||
id: this.uid()
|
||||
})
|
||||
this.currentTab = lengthOfTabs
|
||||
}}
|
||||
>
|
||||
+
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user