diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-04-05 16:11:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 16:11:26 +0200 |
commit | 2dc96b31489276e1ce1ccc161449fa0d68d89336 (patch) | |
tree | aec9be4cd467e5254bf7938ab2336cc8361f1595 /apps/settings/lib | |
parent | 63fc83de26f362e951eb57ee979425584c6bde1b (diff) | |
parent | d87e55cf43385dc0d8a96df694f9983a75ec0637 (diff) | |
download | nextcloud-server-2dc96b31489276e1ce1ccc161449fa0d68d89336.tar.gz nextcloud-server-2dc96b31489276e1ce1ccc161449fa0d68d89336.zip |
Merge pull request #37526 from nextcloud/use-correct-icon-for-calendar-user-settings-section
fix(dav): Use an icon with correct color for calendar user settings section
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Sections/Personal/Calendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Sections/Personal/Calendar.php b/apps/settings/lib/Sections/Personal/Calendar.php index 3f4f100e121..a7689d0fe8d 100644 --- a/apps/settings/lib/Sections/Personal/Calendar.php +++ b/apps/settings/lib/Sections/Personal/Calendar.php @@ -38,7 +38,7 @@ class Calendar implements IIconSection { } public function getIcon(): string { - return $this->urlGenerator->imagePath('core', 'caldav/time.svg'); + return $this->urlGenerator->imagePath('dav', 'calendar.svg'); } public function getID(): string { |