mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
🐛 Fix issue with wrong default valueRenderMode in Google Sheets
This commit is contained in:
parent
6f99c608ae
commit
6a6252baf1
|
@ -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') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
Loading…
Reference in a new issue