Skip to content

Commit 120b51c

Browse files
authored
Fix table snippet in SKILL.blade.php (#640)
Table example snippet fixed, the syntax was possibly from an old version of Flux, and lead towards invalid tables generated by AI. After the fix, AI should generate the proper flux:table syntax.
1 parent de79037 commit 120b51c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.ai/fluxui-pro/skill/fluxui-development/SKILL.blade.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@
6969

7070
@boostsnippet("Table", "blade")
7171
<flux:table>
72-
<flux:table.head>
73-
<flux:table.row>
74-
<flux:table.cell>Name</flux:table.cell>
75-
</flux:table.row>
76-
</flux:table.head>
72+
<flux:table.columns>
73+
<flux:table.cell>Column Name</flux:table.cell>
74+
</flux:table.columns>
75+
<flux:table.row>
76+
<flux:table.cell>Value</flux:table.cell>
77+
</flux:table.row>
7778
</flux:table>
7879
@endboostsnippet
7980

0 commit comments

Comments
 (0)