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
![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
@ -63,13 +63,15 @@ This Web Part uses MSgraph Open Extension to save the personal information on us
Solution|Author(s)
--------|---------
react My Personal Apps|João Mendes
react-my-personal-apps|João Mendes
## Version history
Version|Date|Comments
-------|----|--------
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

File diff suppressed because it is too large Load Diff

View File

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

View File

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