mirror of https://github.com/keeweb/keeweb
renamed teams to microsoft teams; fixed grunt prettier error in onedrive
This commit is contained in:
parent
98268f21c0
commit
f8af64e45b
|
@ -43,7 +43,7 @@
|
|||
"dropbox": "Dropbox",
|
||||
"gdrive": "Google Drive",
|
||||
"onedrive": "OneDrive",
|
||||
"teams": "Teams",
|
||||
"teams": "Microsoft Teams",
|
||||
"menuAllItems": "All Items",
|
||||
"menuColors": "Colors",
|
||||
"menuTrash": "Trash",
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue