From a84f009ad96f95a24ef529587e1229204c43ed4e Mon Sep 17 00:00:00 2001
From: Jed Fox <git@jedfox.com>
Date: Sat, 22 Jul 2023 06:31:51 -0400
Subject: [PATCH] Correct the width of StatusCell (#1380)

---
 .../src/components/transactions/TransactionsTable.js        | 2 +-
 upcoming-release-notes/1380.md                              | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 upcoming-release-notes/1380.md

diff --git a/packages/desktop-client/src/components/transactions/TransactionsTable.js b/packages/desktop-client/src/components/transactions/TransactionsTable.js
index c2121ebfb..c44d0e95a 100644
--- a/packages/desktop-client/src/components/transactions/TransactionsTable.js
+++ b/packages/desktop-client/src/components/transactions/TransactionsTable.js
@@ -437,7 +437,7 @@ function StatusCell({
   return (
     <Cell
       name="cleared"
-      width={30}
+      width={23}
       focused={focused}
       style={{ padding: 1 }}
       plain
diff --git a/upcoming-release-notes/1380.md b/upcoming-release-notes/1380.md
new file mode 100644
index 000000000..dfe4ac585
--- /dev/null
+++ b/upcoming-release-notes/1380.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [j-f1]
+---
+
+Correct the width of the cleared/uncleared column in the transaction list
-- 
GitLab