Fixed bug where URL value was not being passed as prop
This commit is contained in:
parent
455b40718f
commit
51c2391b1f
|
@ -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
|
@ -1,6 +1,6 @@
|
|||
export interface IListItem {
|
||||
name:string;
|
||||
description:string;
|
||||
url:string;
|
||||
Url:string;
|
||||
iconName:string;
|
||||
}
|
||||
|
|
|
@ -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}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
|
|
Loading…
Reference in New Issue