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