mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Summarize Node): Fix property key with dot notation (#14528)
This commit is contained in:
@@ -56,7 +56,7 @@ function isEmpty<T>(value: T) {
|
||||
}
|
||||
|
||||
function normalizeFieldName(fieldName: string) {
|
||||
return fieldName.replace(/[\]\["]/g, '').replace(/[ .]/g, '');
|
||||
return fieldName.replace(/[\]\["]/g, '').replace(/[ .]/g, '_');
|
||||
}
|
||||
|
||||
export const fieldValueGetter = (disableDotNotation?: boolean) => {
|
||||
|
||||
Reference in New Issue
Block a user