Skip to content

Commit

Permalink
Try to fix #28
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorwolf committed Oct 5, 2017
1 parent f283fbc commit 12ccb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/view/Detail.view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@
</semantic:content>

<semantic:positiveAction>
<semantic:PositiveAction text="{i18n>detailRegister}" press="onRegister" visible="{= ${Participant} === null ? true : false}"/>
<semantic:PositiveAction text="{i18n>detailRegister}" press="onRegister" visible="{= ${Participant/RSVP} !== 'Y' && ${Participant/RSVP} !== 'W' && ${Participant/RSVP} !== 'N'}"/>
</semantic:positiveAction>
<semantic:editAction>
<semantic:EditAction id="edit" press="onEdit" visible="{= ${Participant} === null ? false : true }"/>
<semantic:EditAction id="edit" press="onEdit" visible="{= ${Participant/RSVP} === 'Y' || ${Participant/RSVP} === 'W' || ${Participant/RSVP} === 'N'}"/>
</semantic:editAction>
<!--
<semantic:sendEmailAction>
Expand Down

0 comments on commit 12ccb27

Please sign in to comment.