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';