Skip to content

Commit

Permalink
fix(HTML Node): Update property fields to not use expressions on drag (
Browse files Browse the repository at this point in the history
…#7379)

When dragging an expression into a "binary property" or "json property"
field we should use the key name rather than the expression.
  • Loading branch information
Joffcom authored and netroy committed Oct 9, 2023
1 parent 8c38984 commit 4517001
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/nodes-base/nodes/Html/Html.node.ts
Expand Up @@ -115,6 +115,7 @@ export class Html implements INodeType {
displayName: 'Binary Property',
name: 'dataPropertyName',
type: 'string',
requiresDataPath: 'single',
displayOptions: {
show: {
operation: ['extractHtmlContent'],
Expand All @@ -130,6 +131,7 @@ export class Html implements INodeType {
displayName: 'JSON Property',
name: 'dataPropertyName',
type: 'string',
requiresDataPath: 'single',
displayOptions: {
show: {
operation: ['extractHtmlContent'],
Expand Down

0 comments on commit 4517001

Please sign in to comment.