From f8af64e45b2e136d9b97eadb315563ebae7c1658 Mon Sep 17 00:00:00 2001 From: Saulo Alves Date: Sun, 11 Jul 2021 10:52:40 +0200 Subject: [PATCH] renamed teams to microsoft teams; fixed grunt prettier error in onedrive --- app/scripts/locales/base.json | 2 +- app/scripts/storage/impl/storage-onedrive.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/scripts/locales/base.json b/app/scripts/locales/base.json index 608d97e4..a23691d3 100644 --- a/app/scripts/locales/base.json +++ b/app/scripts/locales/base.json @@ -43,7 +43,7 @@ "dropbox": "Dropbox", "gdrive": "Google Drive", "onedrive": "OneDrive", - "teams": "Teams", + "teams": "Microsoft Teams", "menuAllItems": "All Items", "menuColors": "Colors", "menuTrash": "Trash", diff --git a/app/scripts/storage/impl/storage-onedrive.js b/app/scripts/storage/impl/storage-onedrive.js index 46ab9a8d..c83b6ffe 100644 --- a/app/scripts/storage/impl/storage-onedrive.js +++ b/app/scripts/storage/impl/storage-onedrive.js @@ -229,7 +229,11 @@ class StorageOneDrive extends StorageBase { } else if (Features.isLocal) { ({ id: clientId, secret: clientSecret, tenantId: tenant } = OneDriveApps.Local); } else { - ({ id: clientId, secret: clientSecret, tenantId: tenant } = OneDriveApps.Production); + ({ + id: clientId, + secret: clientSecret, + tenantId: tenant + } = OneDriveApps.Production); } } tenant = tenant || 'common';