Give time its own column

This commit is contained in:
Oliver Blanthorn 2022-05-15 15:32:56 +02:00
parent 300b8c0e7e
commit d55b1b7980
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -18,10 +18,11 @@ class TabHistoryCompletionOption
this.html = html`<tr class="TabHistoryCompletionOption option">
<td class="prefix">${index}</td>
<td class="container"></td>
<td class="title">${tab.prefix}${tab.title} (${timeSpan})</td>
<td class="title">${tab.prefix}${tab.title}</td>
<td class="content">
<a class="url" href="${tab.href}">${tab.href}</a>
</td>
<td class="time">${timeSpan}</td>
</tr>`
}
}