Fixed spelling of OneDrive

This commit is contained in:
Hugo Bernier 2020-10-05 22:25:16 -04:00
parent ce8faaa580
commit c986ba76bf
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## Summary
This SPFx Outlook Add-In lets users save any email attachments to a One Drive folder. The users can select any One Drive folder/subfolder and choose the attachments that need to be saved. It uses Microsoft Graph API to fetch the One Drive folders and upload the attachment files.
This SPFx Outlook Add-In lets users save any email attachments to a OneDrive folder. The users can select any OneDrive folder/subfolder and choose the attachments that need to be saved. It uses Microsoft Graph API to fetch the OneDrive folders and upload the attachment files.
![Save Attachments](./assets/ReactSaveAttachments.gif)

View File

@ -72,7 +72,7 @@ export const SaveAttachments: React.FunctionComponent<ISaveAttachmentsProps> = (
setFolders(await props.graphHelper.getOneDriveFolders());
}}
>
<b>{selectedFolder !== null && selectedFolder.parentFolder ? selectedFolder.parentFolder.name : 'One Drive'}</b>
<b>{selectedFolder !== null && selectedFolder.parentFolder ? selectedFolder.parentFolder.name : 'OneDrive'}</b>
</div>
<div className={styles.folderTitle}>
&nbsp;<b>{selectedFolder ? `> ${selectedFolder.name}` : ''}</b>