mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
fix(frontend): fix style panel for compoentn without custom css (#4182)
This commit is contained in:
@@ -366,7 +366,10 @@ export function appComponentFromType<T extends keyof typeof components>(
|
||||
tabs: init.tabs,
|
||||
conditions: init.conditions,
|
||||
nodes: init.nodes,
|
||||
customCss: deepMergeWithPriority(ccomponents[type].customCss as any, override?.customCss),
|
||||
customCss: deepMergeWithPriority(
|
||||
ccomponents[type].customCss as any,
|
||||
override?.customCss ?? {}
|
||||
),
|
||||
recomputeIds: init.recomputeIds ? [] : undefined,
|
||||
actionButtons: init.actionButtons ? [] : undefined,
|
||||
actions: [],
|
||||
|
||||
Reference in New Issue
Block a user