From 259ded9602d5e2974abf6e3b1b5a92ee61c43c23 Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Mon, 24 Feb 2025 11:04:24 -0700 Subject: [PATCH] Fixed issue with trigger word saving in ui --- ui/src/app/jobs/new/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/src/app/jobs/new/page.tsx b/ui/src/app/jobs/new/page.tsx index 2da1f3ca..7eb1180b 100644 --- a/ui/src/app/jobs/new/page.tsx +++ b/ui/src/app/jobs/new/page.tsx @@ -116,8 +116,6 @@ export default function TrainingForm() { saveJob(); }; - console.log('jobConfig.config.process[0].network.linear', jobConfig?.config?.process[0].network?.linear); - return ( <> @@ -165,7 +163,7 @@ export default function TrainingForm() { if (value?.trim() === '') { value = null; } - setJobConfig(value, 'jobConfig.config.process[0].trigger_word'); + setJobConfig(value, 'config.process[0].trigger_word'); }} placeholder="" required