FEATURE: Adding File Upload to Unstructured Loader (#2304)

* initial commit

* updates to loader to support file upload

* updates to loader to support file upload

* update unstructured file

---------

Co-authored-by: Henry <hzj94@hotmail.com>
This commit is contained in:
Vinod Kiran
2024-05-02 23:04:32 +05:30
committed by GitHub
parent e71266de87
commit d5a97060e2
4 changed files with 241 additions and 7 deletions
+4 -1
View File
@@ -66,7 +66,10 @@ const CanvasNode = ({ data }) => {
} else if (data.version && componentNode.version > data.version) {
setWarningMessage(nodeOutdatedMessage(data.version, componentNode.version))
} else if (componentNode.badge === 'DEPRECATING') {
setWarningMessage('This node will be deprecated in the next release. Change to a new node tagged with NEW')
setWarningMessage(
componentNode?.deprecateMessage ??
'This node will be deprecated in the next release. Change to a new node tagged with NEW'
)
}
}
}, [canvas.componentNodes, data.name, data.version])