Skip to content

Commit

Permalink
fix: disable tag suggestion from Agenda event description - EXO-73526 (
Browse files Browse the repository at this point in the history
#698)

* fix: disable tag suggestion from Agenda event description - EXO-73526

* fix: fix the style of the Mail notification - EXO-73526
  • Loading branch information
ahamdi authored and exo-swf committed Oct 3, 2024
1 parent 584f582 commit f76ef98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,27 +190,27 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="left">
<tbody>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold"><%=_ctx.appRes("Notification.agenda.event.space.name")%></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold;width: 100px;"><%=_ctx.appRes("Notification.agenda.event.space.name")%></td>
<td align="left"><%= agendaName %></td>
</tr>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold"><%=_ctx.appRes("Notification.agenda.event.date")%></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold;width: 100px;"><%=_ctx.appRes("Notification.agenda.event.date")%></td>
<td align="left" ><%= _ctx.appRes("Notification.agenda.event.mail.body.date", monthYearDate, startDate, endDate) %> (<%= timeZoneName %>)</td>
</tr>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold"></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold;width: 100px;"></td>
<td align="left" style="color:#999999; font-size:11px;font-family:HelveticaNeue,arial,tahoma,serif" ><%= recurrenceDetails %></td>
</tr>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold"><%=_ctx.appRes("Notification.agenda.event.location")%></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold;vertical-align:top;width: 100px;"><%=_ctx.appRes("Notification.agenda.event.location")%></td>
<td align="left"><%= eventLocation %></td>
</tr>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif;font-weight:bold"><%=_ctx.appRes("Notification.agenda.event.description")%></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif;font-weight:bold;vertical-align:top;width: 100px;"><%=_ctx.appRes("Notification.agenda.event.description")%></td>
<td align="left"><%= eventDescription %></td>
</tr>
<tr>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold"><%=_ctx.appRes("Notification.agenda.event.attendees")%></td>
<td style="color:#999999; font-size:13px;font-family:HelveticaNeue,arial,tahoma,serif; font-weight:bold;vertical-align:top;width: 100px;"><%=_ctx.appRes("Notification.agenda.event.attendees")%></td>
<td align="left"><%= attendees %></td>
</tr>
<% try { %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
v-model="event.description"
:placeholder="$t('agenda.descriptionPlaceholder')"
:max-length="eventDescriptionTextLength"
:tag-enabled="true"
:tag-enabled="false"
class="pt-2 width-full"/>
</div>
</div>
Expand Down

0 comments on commit f76ef98

Please sign in to comment.