Merge pull request #1261 from zachroberts8668/zachroberts8668

This commit is contained in:
Hugo Bernier 2020-04-29 00:44:58 -04:00 committed by GitHub
commit 26523a2a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3874 additions and 3852 deletions

View File

@ -52,7 +52,7 @@ This Web Part uses MSgraph Open Extension to save the personal information on us
## Used SharePoint Framework Version ## Used SharePoint Framework Version
![drop](https://img.shields.io/badge/version-1.10.0-green.svg) ![1.10.0](https://img.shields.io/badge/version-1.10.0-green.svg)
## Applies to ## Applies to
@ -63,13 +63,15 @@ This Web Part uses MSgraph Open Extension to save the personal information on us
Solution|Author(s) Solution|Author(s)
--------|--------- --------|---------
react My Personal Apps|João Mendes react-my-personal-apps|João Mendes
## Version history ## Version history
Version|Date|Comments Version|Date|Comments
-------|----|-------- -------|----|--------
1.0.0|April 9, 2020|Initial release 1.0.0|April 9, 2020|Initial release
1.0.1|April 28, 2020| Bug fix URL Links - Zach Roberts [SPODev](https://spodev.com)
## Disclaimer ## Disclaimer

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
export interface IListItem { export interface IListItem {
name:string; name:string;
description:string; description:string;
url:string; Url:string;
iconName:string; iconName:string;
} }

View File

@ -130,14 +130,14 @@ export default class PersonalApps extends React.Component<
title={item.name} title={item.name}
description={item.description} description={item.description}
iconName={item.iconName} iconName={item.iconName}
url={item.url} url={item.Url}
/> />
) : ( ) : (
<AppItem <AppItem
title={item.name} title={item.name}
description={item.description} description={item.description}
iconName={item.iconName} iconName={item.iconName}
url={item.url} url={item.Url}
/> />
)} )}
</> </>