🎉 Node-RED 1.0.5 released

Node-RED 1.0.5 has been released with the usual small collection of fixes across the board.

Full details here: https://github.com/node-red/node-red/releases/tag/1.0.5

11 Likes

Hi Nick (@knolleary) ,

Thanks for this new release!
It seems there is - in particular cases - an issue with the pimped TypedInput fields.
In our ui-svg node we create a table with typedinputs, but some labels appear below the TypedInput fields (but it is solved as soon as we make the config screen a bit wider):

typedinput_bug

There isn't anything weird in the console log.
If you need other information, please let me know!

Thanks!
Bart

Thanks Bart.

I've pushed a fix for 1.0.6 which we can do early next week (pending any other issues that crop up)

Nick

1 Like

I have similar case but for custom type definitions where label is string

 var typedefinitions = {
                min: {
                    value: "min",
                    label: "Min ",
                    validate: RED.validators.number()
                },
                max: {
                    value: "max",
                    label: "Max ",
                    validate: RED.validators.number()
                },
                sec: {
                    value: "sec",
                    label: "Sec ",
                    validate: RED.validators.number()
                },
            }

And outcome is cropped currently

image

If already covered by fix, please ignore.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.