Skip to content

Commit

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

<semantic:positiveAction>
<semantic:PositiveAction text="{i18n>detailRegister}" press="onRegister" visible="{= ${Participant/RSVP} !== 'Y' && ${Participant/RSVP} !== 'W' && ${Participant/RSVP} !== 'N'}"/>
<semantic:PositiveAction
text="{i18n>detailRegister}"
press="onRegister"
visible="{= ${Participant/RSVP} !== 'Y'
&amp;&amp; ${Participant/RSVP} !== 'W'
&amp;&amp; ${Participant/RSVP} !== 'N'
}" />
</semantic:positiveAction>
<semantic:editAction>
<semantic:EditAction id="edit" press="onEdit" visible="{= ${Participant/RSVP} === 'Y' || ${Participant/RSVP} === 'W' || ${Participant/RSVP} === 'N'}"/>
<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 c953c33

Please sign in to comment.