This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 2_1_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit c4aff2848f9fe6362fc4eb227b5147933ca9fb19 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Wed Jun 5 15:34:21 2019 +0200 [SYNCOPE-1477] Dependency missing --- client/console/pom.xml | 4 ++++ .../console/wicket/markup/html/form/AjaxSpinnerFieldPanel.html | 10 ---------- pom.xml | 5 +++++ 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/client/console/pom.xml b/client/console/pom.xml index b5660b3..2b7b0ef 100644 --- a/client/console/pom.xml +++ b/client/console/pom.xml @@ -68,6 +68,10 @@ under the License. </dependency> <dependency> <groupId>com.googlecode.wicket-jquery-ui</groupId> + <artifactId>wicket-jquery-ui-theme-base</artifactId> + </dependency> + <dependency> + <groupId>com.googlecode.wicket-jquery-ui</groupId> <artifactId>wicket-kendo-ui</artifactId> </dependency> <dependency> diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/AjaxSpinnerFieldPanel.html b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/AjaxSpinnerFieldPanel.html index 56c60a8..9cd7a96 100644 --- a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/AjaxSpinnerFieldPanel.html +++ b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/AjaxSpinnerFieldPanel.html @@ -17,16 +17,6 @@ specific language governing permissions and limitations under the License. --> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org"> - <wicket:head> - <style type="text/css"> - .input-group .ui-spinner { - width: 100%; - } - .ui-state-default .ui-icon { - background-image: url("../../webjars/jquery-ui/${jquery-ui.version}/images/ui-icons_222222_256x240.png"); - } - </style> - </wicket:head> <wicket:extend> <wicket:enclosure child="field-label"> <label wicket:id="field-label">[LABEL]</label><span wicket:id="required"/> diff --git a/pom.xml b/pom.xml index eaef528..6376900 100644 --- a/pom.xml +++ b/pom.xml @@ -1302,6 +1302,11 @@ under the License. </dependency> <dependency> <groupId>com.googlecode.wicket-jquery-ui</groupId> + <artifactId>wicket-jquery-ui-theme-base</artifactId> + <version>${wicket-jqueryui.version}</version> + </dependency> + <dependency> + <groupId>com.googlecode.wicket-jquery-ui</groupId> <artifactId>wicket-kendo-ui</artifactId> <version>${wicket-jqueryui.version}</version> </dependency>
