mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 03:25:52 +01:00
Check if lightbox url is available
This commit is contained in:
parent
ff2129f36a
commit
8ec0bd7295
@ -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 New Issue
Block a user