Fixed spelling of OneDrive
This commit is contained in:
parent
ce8faaa580
commit
c986ba76bf
|
@ -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)
|
||||
|
||||
|
|
|
@ -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}>
|
||||
<b>{selectedFolder ? `> ${selectedFolder.name}` : ''}</b>
|
||||
|
|
Loading…
Reference in New Issue