diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-03-02 23:35:05 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-03-02 23:04:43 +0000 |
commit | 322dbe8860e1a619d035755abba4c3fe95fd2474 (patch) | |
tree | bb7fd9fdbed4758ea863fe64d42fa9699d42fb91 /core | |
parent | c76be650142a93291c8e5f197958995e35793142 (diff) | |
download | nextcloud-server-322dbe8860e1a619d035755abba4c3fe95fd2474.tar.gz nextcloud-server-322dbe8860e1a619d035755abba4c3fe95fd2474.zip |
feat: Add notes as recommended app
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/img/apps/notes.svg | 1 | ||||
-rw-r--r-- | core/src/components/setup/RecommendedApps.vue | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/core/img/apps/notes.svg b/core/img/apps/notes.svg new file mode 100644 index 00000000000..38e29fd623b --- /dev/null +++ b/core/img/apps/notes.svg @@ -0,0 +1 @@ +<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h24v24h-24z" fill="none"/><path d="m3 17.25v3.75h3.75l11.06-11.06-3.75-3.75zm17.71-10.21c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75z"/></svg>
\ No newline at end of file diff --git a/core/src/components/setup/RecommendedApps.vue b/core/src/components/setup/RecommendedApps.vue index 6b81106ff72..8032d1dbdc9 100644 --- a/core/src/components/setup/RecommendedApps.vue +++ b/core/src/components/setup/RecommendedApps.vue @@ -106,6 +106,10 @@ const recommended = { description: t('core', 'Collaborative documents, spreadsheets and presentations, built on Collabora Online.'), icon: imagePath('core', 'apps/richdocuments.svg'), }, + notes: { + description: t('core', 'Distraction free note taking app.'), + icon: imagePath('core', 'apps/notes.svg'), + }, richdocumentscode: { hidden: true, }, |