Merge pull request #1261 from zachroberts8668/zachroberts8668
This commit is contained in:
commit
26523a2a26
|
@ -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
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in New Issue