client: mark the links that should use the new style

This commit is contained in:
Adorian Doran
2025-01-23 01:12:05 +02:00
parent 027649213a
commit f4d2c5a2d2
9 changed files with 13 additions and 12 deletions

View File

@@ -17,7 +17,7 @@ const TPL = `
<table class="table table-borderless">
<tr>
<th>${t("about.homepage")}</th>
<td><a href="https://github.com/TriliumNext/Notes" class="external">https://github.com/TriliumNext/Notes</a></td>
<td><a class="tn-link" href="https://github.com/TriliumNext/Notes" class="external">https://github.com/TriliumNext/Notes</a></td>
</tr>
<tr>
<th>${t("about.app_version")}</th>
@@ -38,7 +38,7 @@ const TPL = `
<tr>
<th>${t("about.build_revision")}</th>
<td><a href="" class="build-revision external" target="_blank"></a></td>
<td><a class="tn-link" href="" class="build-revision external" target="_blank"></a></td>
</tr>
<tr>
@@ -82,6 +82,7 @@ export default class AboutDialog extends BasicWidget {
this.$dataDirectory.html(
$("<a></a>", {
href: "#",
class: "tn-link",
text: appInfo.dataDirectory
})
);