revert(frontend): Frontend auf letzten funktionierenden Stand 5680179 zurückgesetzt — i18n-Massen-Batch brach Dashboard-Shell in Produktion; Render-Loop-Fix und DSGVO-Antrags-UI liegen sicher in Historie für kontrollierten Wiedereinspiel
This commit is contained in:
@@ -148,7 +148,7 @@ export function AutomationSettingsPage() {
|
||||
value={form.default_llm_model}
|
||||
onChange={(e) => updateField('default_llm_model', e.target.value)}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-primary-500"
|
||||
placeholder={t('automationSettings.gpt4')}
|
||||
placeholder="gpt-4"
|
||||
/>
|
||||
<p className="text-xs text-secondary-400 mt-1">{t('automation.defaultLlmModelHint')}</p>
|
||||
</div>
|
||||
@@ -272,7 +272,7 @@ export function AutomationSettingsPage() {
|
||||
value={miniAppForm.app_id}
|
||||
onChange={(e) => setMiniAppForm({ ...miniAppForm, app_id: e.target.value })}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm"
|
||||
placeholder={t('automationSettings.mycustomapp')}
|
||||
placeholder="my_custom_app"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -282,7 +282,7 @@ export function AutomationSettingsPage() {
|
||||
value={miniAppForm.name}
|
||||
onChange={(e) => setMiniAppForm({ ...miniAppForm, name: e.target.value })}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm"
|
||||
placeholder={t('automationSettings.mycustomapp2')}
|
||||
placeholder="My Custom App"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -292,7 +292,7 @@ export function AutomationSettingsPage() {
|
||||
value={miniAppForm.icon}
|
||||
onChange={(e) => setMiniAppForm({ ...miniAppForm, icon: e.target.value })}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm"
|
||||
placeholder={t('automationSettings.appwindow')}
|
||||
placeholder="AppWindow"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -302,7 +302,7 @@ export function AutomationSettingsPage() {
|
||||
onChange={(e) => setMiniAppForm({ ...miniAppForm, description: e.target.value })}
|
||||
rows={2}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm"
|
||||
placeholder={t('automationSettings.optionaldescription')}
|
||||
placeholder="Optional description"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -312,7 +312,7 @@ export function AutomationSettingsPage() {
|
||||
onChange={(e) => setMiniAppForm({ ...miniAppForm, render_schema: e.target.value })}
|
||||
rows={4}
|
||||
className="w-full rounded-lg border border-secondary-300 px-3 py-2 text-sm font-mono"
|
||||
placeholder={t('automationSettings.typeformfields')}
|
||||
placeholder='{"type": "form", "fields": []}'
|
||||
/>
|
||||
</div>
|
||||
<div className="flex justify-end gap-3 pt-4 border-t border-secondary-200">
|
||||
|
||||
Reference in New Issue
Block a user