summaryrefslogtreecommitdiffstats
path: root/client/components/cards/attachments.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/attachments.js')
-rw-r--r--client/components/cards/attachments.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js
index 9e32825e..82ecabcf 100644
--- a/client/components/cards/attachments.js
+++ b/client/components/cards/attachments.js
@@ -47,7 +47,7 @@ Template.attachmentsGalery.events({
Template.attachmentsGalery.helpers({
url() {
- return Attachments.link(this);
+ return Attachments.link(this, 'original', '/');
},
isUploaded() {
return !!this.meta.uploaded;
@@ -62,7 +62,7 @@ Template.previewAttachedImagePopup.events({
Template.previewAttachedImagePopup.helpers({
url() {
- return Attachments.link(this);
+ return Attachments.link(this, 'original', '/');
}
});