Skip to content

Commit

Permalink
status: select all on click pfx
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed May 14, 2024
1 parent 5dcf17a commit 320a660
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions framework/ndn-testbed-status/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
{{ router.shortname }}
</td>

<td>{{ router.prefix }}</td>
<td><a :href="`https://${router.host}`" target="_blank">{{ router.host }}</a></td>
<td class="sel-all">{{ router.prefix }}</td>
<td class="sel-all"><a :href="`https://${router.host}`" target="_blank">{{ router.host }}</a></td>

<td :class="{
warning: getFromNow(router.status?.timestamp ?? 0) < -1800,
Expand Down Expand Up @@ -261,6 +261,10 @@ td.forceshort {
max-width: 80px;
}
.sel-all {
user-select: all;
}
a {
color: blue;
text-decoration: none;
Expand Down

0 comments on commit 320a660

Please sign in to comment.