mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
fix(manacore): fix syntax error in LandingEditor bind:value
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
cc55ca5578
commit
57a2841168
1 changed files with 2 additions and 2 deletions
|
|
@ -447,13 +447,13 @@
|
|||
<div class="grid gap-2 md:grid-cols-2 pr-6">
|
||||
<input
|
||||
type="text"
|
||||
bind:value={config.sections.footer.links || [])[index].label}
|
||||
bind:value={link.label}
|
||||
placeholder="Label"
|
||||
class="rounded-lg border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800 px-3 py-2 text-sm"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
bind:value={config.sections.footer.links || [])[index].href}
|
||||
bind:value={link.href}
|
||||
placeholder="URL"
|
||||
class="rounded-lg border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800 px-3 py-2 text-sm"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue