fix: [workflows:editor] Changed phrasing

pull/8530/head
Sami Mokaddem 2022-07-26 11:24:55 +02:00
parent 5e29f975d1
commit 37afb8938c
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 3 additions and 2 deletions

View File

@ -856,7 +856,8 @@ function addNodesFromWorkflowBlueprint(workflowBlueprint, cursorPosition) {
return
}
var block = Object.assign({}, all_blocks_by_id[node.data.id])
block.params = node.data.params.slice()
// block.params = node.data.params.slice()
block.params = mergeNodeAndModuleParams(node, block.params)
block.saved_filters = Object.assign({}, node.data.saved_filters)
addNode(block, position)
oldNewIDMapping[node.id] = editor.nodeId - 1
@ -1212,7 +1213,7 @@ function genParameterWarning(options) {
$('<i>').addClass('fas fa-exclamation-triangle'),
$('<span>').text('Invalid parameter')
)
.attr('title', 'This parameter does not exist in the associated workflow module and thus will be removed upon saving. Make sure you have the latest version of the this module.') :
.attr('title', 'This parameter does not exist in the associated module and thus will be removed upon saving. Make sure you have the latest version of this module.') :
''
}