Compare commits
2 Commits
ea398a51aa
...
6237aa0c03
Author | SHA1 | Date |
---|---|---|
|
6237aa0c03 | |
|
b6398197ea |
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx-web",
|
"name": "traxxx-web",
|
||||||
"version": "0.41.2",
|
"version": "0.41.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.41.2",
|
"version": "0.41.3",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brillout/json-serializer": "^0.5.8",
|
"@brillout/json-serializer": "^0.5.8",
|
||||||
"@dicebear/collection": "^7.0.5",
|
"@dicebear/collection": "^7.0.5",
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"vite": "$vite"
|
"vite": "$vite"
|
||||||
},
|
},
|
||||||
"version": "0.41.2",
|
"version": "0.41.3",
|
||||||
"imports": {
|
"imports": {
|
||||||
"#/*": "./*.js"
|
"#/*": "./*.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,12 +50,27 @@
|
||||||
<td
|
<td
|
||||||
:title="entity.id"
|
:title="entity.id"
|
||||||
class="table-cell table-name ellipsis"
|
class="table-cell table-name ellipsis"
|
||||||
>{{ entity.name }}</td>
|
>
|
||||||
|
<a
|
||||||
|
:href="`/${entity.type}/${entity.slug}`"
|
||||||
|
target="_blank"
|
||||||
|
class="link"
|
||||||
|
>{{ entity.name }}</a>
|
||||||
|
</td>
|
||||||
|
|
||||||
<td
|
<td
|
||||||
:title="entity.parent?.id"
|
v-if="entity.parent"
|
||||||
|
:title="entity.paren?.id"
|
||||||
class="table-cell table-name ellipsis"
|
class="table-cell table-name ellipsis"
|
||||||
>{{ entity.parent?.name }}</td>
|
>
|
||||||
|
<a
|
||||||
|
:href="`/network/${entity.parent.slug}`"
|
||||||
|
target="_blank"
|
||||||
|
class="link"
|
||||||
|
>{{ entity.parent.name }}</a>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td v-else />
|
||||||
|
|
||||||
<td class="table-cell table-total">{{ entity.totalReleases }}</td>
|
<td class="table-cell table-total">{{ entity.totalReleases }}</td>
|
||||||
|
|
||||||
|
@ -154,7 +169,7 @@ watch([alertThreshold, deadThreshold], () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-name {
|
.table-name {
|
||||||
width: 10rem;
|
width: 12rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-total {
|
.table-total {
|
||||||
|
@ -165,4 +180,8 @@ watch([alertThreshold, deadThreshold], () => {
|
||||||
color: var(--warn);
|
color: var(--warn);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.link {
|
||||||
|
color: var(--text);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue