Skip to content

Commit

Permalink
removing small mistakes in code
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 31, 2018
1 parent ec496e7 commit f700fdd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Expand Up @@ -137,7 +137,7 @@ public boolean isVisible() {
valueWrapper.add(feedback);
}

public CheckBox getValue(){
return (CheckBox) get(ID_VALUE_WRAPPER + ":" + ID_VALUE);
public TriStateComboPanel getValue(){
return (TriStateComboPanel) get(createComponentPath(ID_PROPERTY_LABEL, ID_ROW, ID_VALUE_WRAPPER, ID_VALUE));
}
}
Expand Up @@ -194,7 +194,7 @@ protected WebMarkupContainer initButtonToolbar(String id) {
if(buttonToolbar == null) {
return super.initButtonToolbar(id);
}
return initCustomButtonToolbar(id);
return buttonToolbar;
}

};
Expand Down
Expand Up @@ -1410,4 +1410,10 @@ th.countLabel{
.shopping-cart-icon > .badge { //fix for bug in firefox
margin-left: -10px !important;
}
}

@media (max-width: 767px) {
.content-wrapper {
width: 100%;
}
}

0 comments on commit f700fdd

Please sign in to comment.