From 676a1e171c3e5e5024b29bcca64f9244975e6815 Mon Sep 17 00:00:00 2001
From: Renon <renon@disroot.org>
Date: Wed, 11 Jul 2018 13:58:02 +0000
Subject: [PATCH] Resolve "Track image cropped in queue"

---
 changes/changelog.d/337.bugfix   | 1 +
 front/src/components/Sidebar.vue | 7 +++++++
 2 files changed, 8 insertions(+)
 create mode 100644 changes/changelog.d/337.bugfix

diff --git a/changes/changelog.d/337.bugfix b/changes/changelog.d/337.bugfix
new file mode 100644
index 00000000..b401c550
--- /dev/null
+++ b/changes/changelog.d/337.bugfix
@@ -0,0 +1 @@
+Ensure images are not cropped in queue (#337)
diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue
index 2c193fc6..4765823f 100644
--- a/front/src/components/Sidebar.vue
+++ b/front/src/components/Sidebar.vue
@@ -372,6 +372,9 @@ $sidebar-color: #3d3e3f;
   tr {
     cursor: pointer;
   }
+  td:nth-child(2) {
+    width: 55px;
+  }
 }
 .tab[data-tab="library"] {
   flex-direction: column;
@@ -414,6 +417,10 @@ $sidebar-color: #3d3e3f;
 .ui.message.black {
   background: $sidebar-color;
 }
+
+.ui.mini.image {
+  width: 100%;
+}
 </style>
 
 <style lang="scss">
-- 
GitLab