Skip to content

Commit

Permalink
for groups, get Save Changes dialog to close #6792
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Nov 12, 2020
1 parent b41d428 commit 8b14116
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/webapp/manage-groups.xhtml
Expand Up @@ -92,8 +92,8 @@
<span class="glyphicon glyphicon-warning-sign text-warning"/> <span class="text-warning">#{bundle['dataverse.manageGroups.tab.action.btn.delete.dialog.tip']}</span>
</p>
<div class="button-block">
<p:commandButton styleClass="btn btn-default" value="#{bundle.continue}" onclick="PF('deleteConfirmation').hide()" action="#{manageGroupsPage.deleteGroup()}" update="@all"/>
<p:commandButton styleClass="btn btn-link" value="#{bundle.cancel}" onclick="PF('deleteConfirmation').hide()" action="#{manageGroupsPage.unrenderDeletePopup()}" update="@all"/>
<p:commandButton styleClass="btn btn-default" value="#{bundle.continue}" onclick="PF('deleteConfirmation').hide()" action="#{manageGroupsPage.deleteGroup()}" update="manageGroupsForm"/>
<p:commandButton styleClass="btn btn-link" value="#{bundle.cancel}" onclick="PF('deleteConfirmation').hide()" action="#{manageGroupsPage.unrenderDeletePopup()}" update="manageGroupsForm"/>
</div>
</p:dialog>
<p:dialog id="viewGroup" styleClass="largePopUp" header="#{bundle['dataverse.manageGroups.tab.action.btn.view.dialog.header']}" widgetVar="viewGroup" modal="true">
Expand Down Expand Up @@ -171,7 +171,7 @@
<p:commandButton id="saveGroup" styleClass="btn btn-default"
actionListener="#{manageGroupsPage.saveExplicitGroup}"
value="#{bundle.saveChanges}"
update="@all">
update="manageGroupsForm">
</p:commandButton>
<button class="btn btn-link" onclick="PF('viewGroup').hide()" type="button">
#{bundle.cancel}
Expand Down

0 comments on commit 8b14116

Please sign in to comment.