forked from mystiq/hydrogen-web
Check if lightbox url is available
This commit is contained in:
parent
ff2129f36a
commit
8ec0bd7295
1 changed files with 1 additions and 1 deletions
|
@ -24,6 +24,6 @@ export class ImageView extends BaseMediaView {
|
|||
title: vm => vm.label,
|
||||
style: `max-width: ${vm.width}px; max-height: ${vm.height}px;`
|
||||
});
|
||||
return vm.isPending ? img : t.a({href: vm.lightboxUrl}, img);
|
||||
return vm.isPending || !vm.lightboxUrl ? img : t.a({href: vm.lightboxUrl}, img);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue