refactor(grid): label the name column header instead of repeating the title
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 22s
Deploy to GitHub Pages / deploy (push) Has been skipped

The corner header rendered plan.title in the 9rem name column, so it
collapsed to "..." — and the title already shows in the switcher, the
source, and the heading above the grid. Label its own column instead.
This commit is contained in:
Julien Calixte
2026-06-19 19:03:56 +02:00
parent b6f7bcab82
commit 122147c19c

View File

@@ -167,7 +167,7 @@ const bandStyle = computed(() => ({
<div class="plan-grid" :style="gridStyle"> <div class="plan-grid" :style="gridStyle">
<!-- header row --> <!-- header row -->
<div class="hcell corner">{{ plan.title }}</div> <div class="hcell corner">Feature</div>
<div <div
v-for="(c, ci) in cols" v-for="(c, ci) in cols"
:key="'h-' + c.w" :key="'h-' + c.w"