|
@@ -262,13 +262,11 @@ class LauncherWidget extends VDomRenderer<LauncherModel> {
|
|
};
|
|
};
|
|
let imageClass = `${item.iconClass} ${IMAGE_CLASS}`;
|
|
let imageClass = `${item.iconClass} ${IMAGE_CLASS}`;
|
|
let icon = h.div({ className: imageClass, onclick }, item.iconLabel);
|
|
let icon = h.div({ className: imageClass, onclick }, item.iconLabel);
|
|
- let title = item.displayName;
|
|
|
|
|
|
+ let title = item.displayName + (item.category ? ' ' + item.category : '');
|
|
let text = h.span({className: TEXT_CLASS, onclick, title }, title);
|
|
let text = h.span({className: TEXT_CLASS, onclick, title }, title);
|
|
- let activityType = item.category ? ' ' + item.category : '';
|
|
|
|
- let category = h.span({className: TEXT_CLASS, onclick }, activityType);
|
|
|
|
return h.div({
|
|
return h.div({
|
|
className: ITEM_CLASS,
|
|
className: ITEM_CLASS,
|
|
- }, [icon, text, category]);
|
|
|
|
|
|
+ }, [icon, text]);
|
|
});
|
|
});
|
|
|
|
|
|
let children: VirtualNode[];
|
|
let children: VirtualNode[];
|