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