Skip to content

Commit

Permalink
Move attribute to panelGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
solth committed Sep 2, 2024
1 parent 393307c commit 1ee8d62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@
</h:commandLink>

<h:panelGroup styleClass="action"
rendered="#{SecurityAccessController.hasAuthorityToMassImportProcesses()}"
title="#{item.isActive() and item.templates.size() gt 0 ? msgs['massImport'] : msgs['noTemplatesConfigured']}">
<p:commandLink id="massImport"
action="#{SelectTemplateDialogView.openMassImportForProject()}"
disabled="#{item.templates.size() lt 1 or not item.active}"
rendered="#{SecurityAccessController.hasAuthorityToMassImportProcesses()}">
disabled="#{item.templates.size() lt 1 or not item.active}">
<f:setPropertyActionListener target="#{SelectTemplateDialogView.selectedTemplateId}" value="0"/>
<f:setPropertyActionListener target="#{SelectTemplateDialogView.project}" value="#{item}"/>
<h:outputText><i class="fa fa-stack-overflow"/></h:outputText>
Expand Down

0 comments on commit 1ee8d62

Please sign in to comment.