Skip to content

Commit

Permalink
removing repeating title on RunReportPopupPanel
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Jun 1, 2021
1 parent 6efa43c commit 0935c07
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,6 @@
<div class="feedbackContainer">
<div wicket:id="popupFeedback" class="messagePanel"/>
</div>
<h3 style="margin-left: 20px;">
<div wicket:id="title"/>
</h3>

<!-- <div class="prism-properties">-->
<!-- <div wicket:id="parameters" class="property-stripe">-->
<!-- <div class="row prism-property" wicket:id="parameter"/>-->
<!-- </div>-->
<!-- </div>-->
<div wicket:id="table"/>
<p align="right">
<a class="btn btn-default btn-sm" wicket:id="cancel"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public class RunReportPopupPanel extends BasePanel<ReportType> implements Popupa

private static final String ID_MAIN_FORM = "mainForm";

private static final String ID_TITLE = "title";
private static final String ID_RUN_BUTTON = "runReport";
private static final String ID_CANCEL_BUTTON = "cancel";
private static final String ID_POPUP_FEEDBACK = "popupFeedback";
Expand Down Expand Up @@ -91,8 +90,6 @@ protected void initLayout() {
Form<?> mainForm = new MidpointForm<>(ID_MAIN_FORM);
add(mainForm);

mainForm.add(new Label(ID_TITLE, getTitle()));

FeedbackAlerts feedback = new FeedbackAlerts(ID_POPUP_FEEDBACK);
ReportObjectsListPanel table = new ReportObjectsListPanel(ID_TABLE, getModel()){

Expand Down

0 comments on commit 0935c07

Please sign in to comment.