Skip to content

Commit

Permalink
fix for query field on audit log page
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Jun 17, 2019
1 parent 997c47d commit 74b17b0
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -214,7 +214,7 @@ private void initParametersPanel(Form mainForm) {
AuditSearchDto.F_COLLECTION + ".auditSearch.recordQuery"));
usedQuery.setOutputMarkupId(true);
usedQuery.setEnabled(false);
parametersPanel.add(usedQuery);
usedQueryContainer.add(usedQuery);

WebMarkupContainer usedIntervalContainer = new WebMarkupContainer(ID_USED_INTERVAL_CONTAINER);
usedIntervalContainer.setOutputMarkupId(true);
Expand All @@ -225,7 +225,7 @@ private void initParametersPanel(Form mainForm) {
AuditSearchDto.F_COLLECTION + ".auditSearch.interval"));
usedInterval.setOutputMarkupId(true);
usedInterval.setEnabled(false);
parametersPanel.add(usedInterval);
usedIntervalContainer.add(usedInterval);

DropDownChoicePanel<AuditEventTypeType> eventType = new DropDownChoicePanel<>(
ID_EVENT_TYPE, new PropertyModel<>(
Expand Down

0 comments on commit 74b17b0

Please sign in to comment.