my personal apps url not saved
This commit is contained in:
parent
40930889f8
commit
f8ab357950
|
@ -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