feat: hide ID
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
fe9adb7a3c
commit
a26401d8eb
|
@ -28,7 +28,7 @@ const toggleCardCheck = (item) => {
|
||||||
<div class="title text-primary text-weight-bold text-h5">
|
<div class="title text-primary text-weight-bold text-h5">
|
||||||
{{ $props.title }}
|
{{ $props.title }}
|
||||||
</div>
|
</div>
|
||||||
<QChip class="q-chip-color" outline size="sm">
|
<QChip v-if="$props.id" class="q-chip-color" outline size="sm">
|
||||||
{{ t('ID') }}: {{ $props.id }}
|
{{ t('ID') }}: {{ $props.id }}
|
||||||
</QChip>
|
</QChip>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -60,7 +60,6 @@ const killSession = async (id) => {
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList
|
<CardList
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:id="row.id"
|
|
||||||
:title="row.user?.username"
|
:title="row.user?.username"
|
||||||
@click="navigate($event, row.id)"
|
@click="navigate($event, row.id)"
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
|
|
Loading…
Reference in New Issue