Fixed bug where URL value was not being passed as prop

This commit is contained in:
zachroberts8668 2020-04-28 15:42:27 -04:00
parent 455b40718f
commit 51c2391b1f
4 changed files with 3871 additions and 3850 deletions

View File

@ -70,6 +70,7 @@ react My Personal Apps|João Mendes
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}
/>
)}
</>