fix(03): replace template x-data with tbody x-data for table rendering
<template x-data> inside <tbody> is inert — browsers don't render its children. Replace with per-member <tbody x-data> (multiple tbody is valid HTML). Also replace x-collapse on <tr> with x-transition since table rows don't support max-height/overflow-hidden. UAT: all 7 tests passed via Playwright automation. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
@@ -256,7 +256,7 @@ class MemberNoteTest extends TestCase
|
||||
$response->assertStatus(200);
|
||||
$response->assertSee('toggleHistory', false);
|
||||
$response->assertSee('historyOpen', false);
|
||||
$response->assertSee('x-collapse', false);
|
||||
$response->assertSee('x-transition:enter', false);
|
||||
$response->assertSee('searchQuery', false);
|
||||
$response->assertSee('filteredNotes', false);
|
||||
$response->assertSee('尚無備註', false);
|
||||
|
||||
Reference in New Issue
Block a user