Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions dashboard/src/components/common/UserGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,15 @@ const label = computed(() =>

<template>
<div class="flex items-center gap-2">
<!-- Overlap needs a margin; the row's gap alone would spread the stack apart. -->
<div v-if="shown.length" class="flex shrink-0 -space-x-1.5" aria-hidden="true">
<Avatar
v-for="user in shown"
:key="user.user ?? user.full_name ?? ''"
size="sm"
:image="user.user_image ?? undefined"
:label="user.full_name ?? user.user ?? ''"
class="ring-2 ring-surface-white"
/>
</div>
<span class="truncate text-base text-ink-gray-6">{{ label }}</span>
<span class="truncate text-sm text-ink-gray-6">{{ label }}</span>
</div>
</template>
2 changes: 1 addition & 1 deletion dashboard/src/components/dashboard/teams/TeamsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ManageTeamPanel from "@/components/dashboard/teams/ManageTeamPanel.vue"
import { teams } from "@/data/teams"
import type { TeamOption } from "@/types"

const COLUMNS = "grid grid-cols-[minmax(0,2fr)_minmax(0,1fr)_1.5rem] items-center gap-4"
const COLUMNS = "grid grid-cols-[minmax(0,2fr)_minmax(0,1.4fr)_1.5rem] items-center gap-4 pl-3"

const search = ref("")
const managing = ref<TeamOption | null>(null)
Expand Down
Loading