Closed (fixed)
Project:
Augmentor AI
Version:
1.2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
11 Aug 2025 at 19:03 UTC
Updated:
1 Oct 2025 at 05:19 UTC
Jump to comment: Most recent
Replace
const hasSourceFields = sourceFields.length > 0;
with
const hasSourceFields = Object.keys(sourceFields).length > 0;
in augmentor_library.js file as sourceFields variable contains object and not array
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
sonu.raj.chauhan commentedComment #4
sonu.raj.chauhan commentedComment #5
eleonelThanks for the fix.