mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
Fix loading issue on map.
This commit is contained in:
parent
b1f6507a77
commit
eb79dab117
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
@ -37,7 +37,13 @@ class ImageIcon extends Icon {
|
|||||||
$assert(topic, 'topic can not be null');
|
$assert(topic, 'topic can not be null');
|
||||||
|
|
||||||
// Build graph image representation ...
|
// Build graph image representation ...
|
||||||
const iconType = iconModel.getIconType();
|
let iconType = iconModel.getIconType();
|
||||||
|
|
||||||
|
// Hack for overwrite wrong icon. Remove in couple of months ...
|
||||||
|
if (iconType === 'meeetapps_facebook-messenger') {
|
||||||
|
iconType = 'meetapps_facebook-messenger';
|
||||||
|
}
|
||||||
|
|
||||||
const imgUrl = ImageIcon.getImageUrl(iconType);
|
const imgUrl = ImageIcon.getImageUrl(iconType);
|
||||||
super(imgUrl);
|
super(imgUrl);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user