feat: hide ID
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2024-06-06 23:51:45 +02:00
parent fe9adb7a3c
commit a26401d8eb
2 changed files with 1 additions and 2 deletions

View File

@ -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>

View File

@ -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"