From b44f23cc98b743f990afdf98d9eee3962b13c38a Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 10 Oct 2017 08:49:29 -0700 Subject: [PATCH] Show proper icon when attachment is not an image (#1548) FREEBIE --- js/views/file_input_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/file_input_view.js b/js/views/file_input_view.js index 3c4ee9440b..cc14d91a0f 100644 --- a/js/views/file_input_view.js +++ b/js/views/file_input_view.js @@ -131,7 +131,7 @@ this.addThumb(this.oUrl); break; default: - this.addThumb('../images/file.svg'); break; + this.addThumb('images/file.svg'); break; } this.autoScale(file).then(function(blob) {