forked from mystiq/hydrogen-web
Merge pull request #782 from vector-im/image-view-fix
Do not render images as links if lightboxUrl is empty
This commit is contained in:
commit
e42e76a21c
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