Closed jperedadnr closed 3 weeks ago
Fixes #774
The css expression propertyVal + ": " + valueVal + ";" only makes sense if both property and value are not empty. This fix prevents an unnecessary parsing call that derives in uncaught CSS warnings.
propertyVal + ": " + valueVal + ";"
Issue
Fixes #774
The css expression
propertyVal + ": " + valueVal + ";"
only makes sense if both property and value are not empty. This fix prevents an unnecessary parsing call that derives in uncaught CSS warnings.Progress