Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Castro <javiercastro@nexion.com.ar>2014-01-14 19:06:53 +0400
committerJavier Castro <javiercastro@nexion.com.ar>2014-01-14 19:06:53 +0400
commit556ae5ae8187b89a3785219d5621e7ebc9bb7a8c (patch)
treef04b7e50bf06e21f8e5d5919c755fbe90c1ae59f /app/views/events/event/_note.html.haml
parent71f1a84599101b2af2f74ae54ebfb2f880935985 (diff)
Temporary fix for #4305: Cant preview attached png images on notes; attachment.secure_url returns an url which is accessible
Diffstat (limited to 'app/views/events/event/_note.html.haml')
-rw-r--r--app/views/events/event/_note.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/events/event/_note.html.haml b/app/views/events/event/_note.html.haml
index db5f3ebb00f..ad2afbce14c 100644
--- a/app/views/events/event/_note.html.haml
+++ b/app/views/events/event/_note.html.haml
@@ -14,8 +14,8 @@
- note = event.target
- if note.attachment.url
- if note.attachment.image?
- = link_to note.attachment.url, target: '_blank' do
- = image_tag note.attachment.url, class: 'note-image-attach'
+ = link_to note.attachment.secure_url, target: '_blank' do
+ = image_tag note.attachment.secure_url, class: 'note-image-attach'
- else
= link_to note.attachment.secure_url, target: "_blank", class: 'note-file-attach' do
%i.icon-paper-clip