Azure / iot-ux-fluent-controls

A collection of shared react UI components used across IoT teams.
MIT License
13 stars 19 forks source link

Fix react warning "Received `false` for a non-boolean attribute `title`" #194

Closed vishwam closed 4 years ago

vishwam commented 4 years ago

If a form field doesn't have an error, we're currently setting its title to false, which triggers a react warning "Received false for a non-boolean attribute title".

Set title to undefined if the error property isn't a string.