mirror of
https://github.com/n8n-io/n8n.git
synced 2025-11-20 17:46:34 +00:00
fix(editor): Replace icon for null in schema view (#21415)
This commit is contained in:
parent
a0c2071cb0
commit
e569750e32
@ -188,6 +188,7 @@ import IconLucideSmile from '~icons/lucide/smile';
|
||||
import IconLucideSparkles from '~icons/lucide/sparkles';
|
||||
import IconLucideSquare from '~icons/lucide/square';
|
||||
import IconLucideSquareCheck from '~icons/lucide/square-check';
|
||||
import IconLucideSquareMinus from '~icons/lucide/square-minus';
|
||||
import IconLucideSquarePen from '~icons/lucide/square-pen';
|
||||
import IconLucideSquarePlus from '~icons/lucide/square-plus';
|
||||
import IconLucideStickyNote from '~icons/lucide/sticky-note';
|
||||
@ -626,6 +627,7 @@ export const updatedIconSet = {
|
||||
sparkles: IconLucideSparkles,
|
||||
square: IconLucideSquare,
|
||||
'square-check': IconLucideSquareCheck,
|
||||
'square-minus': IconLucideSquareMinus,
|
||||
'square-pen': IconLucideSquarePen,
|
||||
'square-plus': IconLucideSquarePlus,
|
||||
'sticky-note': IconLucideStickyNote,
|
||||
|
||||
@ -319,7 +319,7 @@ const icons = {
|
||||
object: DATA_TYPE_ICON_MAP.object,
|
||||
array: DATA_TYPE_ICON_MAP.array,
|
||||
['string']: DATA_TYPE_ICON_MAP.string,
|
||||
null: 'case-upper',
|
||||
null: 'square-minus',
|
||||
['number']: DATA_TYPE_ICON_MAP.number,
|
||||
['boolean']: DATA_TYPE_ICON_MAP.boolean,
|
||||
function: 'code',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user