Account connections #424

Merged
jsegarra merged 8 commits from :feature/AccountConnections into dev 2024-06-11 08:53:27 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit a26401d8eb - Show all commits

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"