Skip to content

Commit

Permalink
fix: start and end dates are rset to midnight - EXO-73523 (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamdi authored and exo-swf committed Oct 16, 2024
1 parent 4e46ca5 commit 343fe20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ agenda.repitition=R\u00e9p\u00e9tition
agenda.connect=Connecter
agenda.disconnect=D\u00e9connecter
agenda.icsbutton=Ajouter \u00e0 mon Agenda
agenda.invitationText=Invitation issue par
agenda.invitationText=Invitation envoy\u00e9e par
agenda.inSpace=dans l'espace
agenda.visioLink=Lien de visio :
agenda.eventDetail=D\u00e9tail de l'\u00e9v\u00e9nement :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ export default {
return processAndFoldText(icsContent);
},
downloadICS(event) {
event = this.$agendaUtils.convertDates(event);
return this.generateICS(event).then(icsContent => {
const blob = new Blob([icsContent], { type: 'text/calendar' });
const link = document.createElement('a');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
</div>
<div v-if="!connectedConnector" class="text-right flex-grow-1" @click="openPersonalCalendarDrawer"
:title="$t('agenda.connectYourPersonalAgenda')"
:aria-label="$t('agenda.icsbutton')"
>
:aria-label="$t('agenda.connectYourPersonalAgenda')">
<v-icon class="uiIcon20x20 clickable" depressed>
fa-external-link-alt
</v-icon>
Expand Down

0 comments on commit 343fe20

Please sign in to comment.