You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by so...@apache.org on 2020/02/05 04:14:23 UTC

[wicket] branch csp updated: [WICKET-6725] dublicated class attribute is eliminated

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch csp
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/csp by this push:
     new 9c592ab  [WICKET-6725] dublicated class attribute is eliminated
9c592ab is described below

commit 9c592ab9f010a6127ceafda4c5cd21a49ac3584e
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Wed Feb 5 11:14:07 2020 +0700

    [WICKET-6725] dublicated class attribute is eliminated
---
 .../wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
index ab1c0a1..ce2ee69 100644
--- a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
+++ b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
@@ -95,7 +95,7 @@ public class AjaxIndicatorAppender extends Behavior
 		super.afterRender(component);
 		final Response r = component.getResponse();
 
-		r.write("<span class=\"wicket--hidden\" class=\"");
+		r.write("<span class=\"wicket--hidden ");
 		r.write(getSpanClass());
 		r.write("\" ");
 		r.write("id=\"");