diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-08-27 07:37:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-27 07:37:52 +0200 |
commit | b8ab7b7e556d7bc71597a2ca716652b80174719d (patch) | |
tree | 7b0b4ef98b4e292528d3500e52d02add47b972e3 /apps/dav/src | |
parent | f35e33f2d89d0947cb7ab0617939dde38e364d69 (diff) | |
parent | cc72f738edd16ec34b838f9d3620fd4cebe4f4a0 (diff) | |
download | nextcloud-server-b8ab7b7e556d7bc71597a2ca716652b80174719d.tar.gz nextcloud-server-b8ab7b7e556d7bc71597a2ca716652b80174719d.zip |
Merge pull request #47448 from nextcloud/fix/47187/user-status-absence
fix(user_status): add link to Availability page if user set predefined 'Vacationing'
Diffstat (limited to 'apps/dav/src')
-rw-r--r-- | apps/dav/src/views/Availability.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/dav/src/views/Availability.vue b/apps/dav/src/views/Availability.vue index f5415909429..fedd07141c0 100644 --- a/apps/dav/src/views/Availability.vue +++ b/apps/dav/src/views/Availability.vue @@ -4,11 +4,13 @@ --> <template> <div> - <NcSettingsSection :name="$t('dav', 'Availability')" + <NcSettingsSection id="availability" + :name="$t('dav', 'Availability')" :description="$t('dav', 'If you configure your working hours, other people will see when you are out of office when they book a meeting.')"> <AvailabilityForm /> </NcSettingsSection> <NcSettingsSection v-if="!hideAbsenceSettings" + id="absence" :name="$t('dav', 'Absence')" :description="$t('dav', 'Configure your next absence period.')"> <AbsenceForm /> |