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">
{{ $props.title }}
</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 }}
</QChip>
</div>

View File

@ -60,7 +60,6 @@ const killSession = async (id) => {
<template #body="{ rows }">
<CardList
:key="row.id"
:id="row.id"
:title="row.user?.username"
@click="navigate($event, row.id)"
v-for="row of rows"