diff --git a/umbraco/presentation/umbraco_client/GenericProperty/genericProperty.js b/umbraco/presentation/umbraco_client/GenericProperty/genericProperty.js index ed2c49cb10..4dde1a590a 100644 --- a/umbraco/presentation/umbraco_client/GenericProperty/genericProperty.js +++ b/umbraco/presentation/umbraco_client/GenericProperty/genericProperty.js @@ -28,7 +28,7 @@ function checkAlias(theId) { jQuery('#' + theId).blur(function(event) { var currentAlias = jQuery('#' + theId).val(); jQuery('#' + theId).val(safeAlias(currentAlias)); - jQuery('#' + theId).toggleClass('aliasValidationError'); + jQuery('#' + theId).removeClass('aliasValidationError'); }) }