This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 3_0_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 2d9520b31e710e41b769e8910e13c61b0d70f7a5 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Thu May 30 14:43:50 2024 +0200 Upgrading maven-enforcer-plugin --- .../apache/syncope/client/console/wizards/any/Ownership.html | 12 ++++++++---- pom.xml | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Ownership.html b/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Ownership.html index bbeced3154..2ea785a1c2 100644 --- a/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Ownership.html +++ b/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Ownership.html @@ -27,9 +27,11 @@ under the License. </div> <wicket:fragment wicket:id="userSearchFragment"> - <div class="form-group input-group"> + <div class="input-group"> <span wicket:id="userOwner"/> - <a href="#" wicket:id="userOwnerReset" class="input-group-append input-group-text"><i class="fas fa-minus-circle" alt="reset user owner" title="Reset"></i></a> + <div class="input-group-addon"> + <a href="#" wicket:id="userOwnerReset"><i class="fas fa-minus-circle" alt="reset user owner" title="Reset"></i></a> + </div> </div> <span wicket:id="usersearch">[USER SEARCH]</span> <div class="searchResult"> @@ -38,9 +40,11 @@ under the License. </wicket:fragment> <wicket:fragment wicket:id="groupSearchFragment"> - <div class="form-group input-group"> + <div class="input-group"> <span wicket:id="groupOwner"/> - <a href="#" wicket:id="groupOwnerReset" class="input-group-append input-group-text"><i class="fas fa-minus-circle" alt="reset group owner" title="Reset"></i></a> + <div class="input-group-addon"> + <a href="#" wicket:id="groupOwnerReset"><i class="fas fa-minus-circle" alt="reset group owner" title="Reset"></i></a> + </div> </div> <span wicket:id="groupsearch">[GROUP SEARCH]</span> <div class="searchResult"> diff --git a/pom.xml b/pom.xml index 67926605a8..0ffa97d1a5 100644 --- a/pom.xml +++ b/pom.xml @@ -1809,7 +1809,7 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> - <version>3.4.1</version> + <version>3.5.0</version> <executions> <execution> <id>default-cli</id>
