Commit 1160c409 by Juho Juopperi

Fix a faulty reference to queuebean instead of queue.

/neomap/quemgmt.xhtml @19,92 value="#{queueManageView.queuebean.minimumSlotsInQueue}": The class 'com.sun.proxy.$Proxy640' does not have the property 'minimumSlotsInQueue'.
1 parent be84470d
Showing with 3 additions and 3 deletions
......@@ -16,13 +16,13 @@
<h:form>
<p:panelGrid columns="2">
<p:outputLabel for="minslots" value="#{i18n['queuemgmt.minimumSlotsInQueue']}" />
<p:inputText id="minslots" value="#{queueManageView.queuebean.minimumSlotsInQueue}" />
<p:inputText id="minslots" value="#{queueManageView.queue.minimumSlotsInQueue}" />
<p:outputLabel for="reservingsize" value="#{i18n['queuemgmt.reservingSize']}" />
<p:inputText id="reservingsize" value="#{queueManageView.queuebean.reservingSize}" />
<p:inputText id="reservingsize" value="#{queueManageView.queue.reservingSize}" />
<p:outputLabel for="defaultTimeout" value="#{i18n['queuemgmt.defaultTimeoutMin']}" />
<p:inputText id="defaultTimeout" value="#{queueManageView.queuebean.defaultTimeoutMin}" />
<p:inputText id="defaultTimeout" value="#{queueManageView.queue.defaultTimeoutMin}" />
</p:panelGrid>
<p:commandButton ajax="false" value="#{i18n['queuemgmt.saveProperties']}"></p:commandButton>
</h:form>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!