mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
🐛 Fix issue with wrong default valueRenderMode in Google Sheets
This commit is contained in:
@@ -390,7 +390,7 @@ export class GoogleSheets implements INodeType {
|
|||||||
const options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
const options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
||||||
|
|
||||||
const valueInputMode = (options.valueInputMode || 'RAW') as ValueInputOption;
|
const valueInputMode = (options.valueInputMode || 'RAW') as ValueInputOption;
|
||||||
const valueRenderMode = (options.valueRenderMode || 'FORMATTED_VALUE') as ValueRenderOption;
|
const valueRenderMode = (options.valueRenderMode || 'UNFORMATTED_VALUE') as ValueRenderOption;
|
||||||
|
|
||||||
if (operation === 'append') {
|
if (operation === 'append') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user