fix: AI prompt fields use full width instead of narrow column

Removed group wrappers around prompt fields. Using label + field pattern
directly inside the page so prompts span the full available width.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-04-01 15:45:18 -04:00
parent c46e4c0b28
commit 9f0badfb7e

View File

@@ -162,30 +162,23 @@
<field name="geo_company_phone"/>
</group>
</group>
<group string="Product Title Prompt">
<field name="prompt_product_title" nolabel="1" widget="text"/>
</group>
<group string="Short Description Prompt">
<field name="prompt_short_description" nolabel="1" widget="text"/>
</group>
<group string="Long Description Prompt">
<field name="prompt_long_description" nolabel="1" widget="text"/>
</group>
<group string="Meta Title Prompt">
<field name="prompt_meta_title" nolabel="1" widget="text"/>
</group>
<group string="Meta Description Prompt">
<field name="prompt_meta_description" nolabel="1" widget="text"/>
</group>
<group string="Image Alt Text Prompt">
<field name="prompt_image_alt" nolabel="1" widget="text"/>
</group>
<group string="Image Caption Prompt">
<field name="prompt_image_caption" nolabel="1" widget="text"/>
</group>
<group string="Keywords Prompt">
<field name="prompt_keywords" nolabel="1" widget="text"/>
</group>
<separator string="AI Prompts"/>
<label for="prompt_product_title" string="Product Title Prompt"/>
<field name="prompt_product_title" nolabel="1" widget="text" placeholder="Prompt for generating product titles..."/>
<label for="prompt_short_description" string="Short Description Prompt"/>
<field name="prompt_short_description" nolabel="1" widget="text" placeholder="Prompt for generating short descriptions..."/>
<label for="prompt_long_description" string="Long Description Prompt"/>
<field name="prompt_long_description" nolabel="1" widget="text" placeholder="Prompt for generating long descriptions..."/>
<label for="prompt_meta_title" string="Meta Title Prompt"/>
<field name="prompt_meta_title" nolabel="1" widget="text" placeholder="Prompt for generating SEO meta titles..."/>
<label for="prompt_meta_description" string="Meta Description Prompt"/>
<field name="prompt_meta_description" nolabel="1" widget="text" placeholder="Prompt for generating SEO meta descriptions..."/>
<label for="prompt_image_alt" string="Image Alt Text Prompt"/>
<field name="prompt_image_alt" nolabel="1" widget="text" placeholder="Prompt for generating image alt text..."/>
<label for="prompt_image_caption" string="Image Caption Prompt"/>
<field name="prompt_image_caption" nolabel="1" widget="text" placeholder="Prompt for generating image captions..."/>
<label for="prompt_keywords" string="Keywords Prompt"/>
<field name="prompt_keywords" nolabel="1" widget="text" placeholder="Prompt for generating SEO keywords..."/>
</page>
</notebook>
</sheet>