feat: Add FolderSync icon to UpdateDataComponent in update_data.py (#4753)

* refactor: Add FolderSync icon to nodeIconsLucide in styleUtils.ts

* feat: Add FolderSync icon to UpdateDataComponent in update_data.py

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
anovazzi1 2024-11-22 10:37:50 -03:00 committed by GitHub
commit e208776ea2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -19,6 +19,7 @@ class UpdateDataComponent(Component):
description: str = "Dynamically update or append data with the specified fields."
name: str = "UpdateData"
MAX_FIELDS = 15 # Define a constant for maximum number of fields
icon = "FolderSync"
inputs = [
DataInput(

View file

@ -88,6 +88,7 @@ import {
FolderIcon,
FolderPlus,
FolderPlusIcon,
FolderSync,
FolderUp,
FormInput,
Forward,
@ -897,4 +898,5 @@ export const nodeIconsLucide: iconsType = {
DatabaseZap,
Cog,
ArrowRightLeft,
FolderSync,
};