From 69140d629032ac0bb8f7f83ad269ebbe7a6cb178 Mon Sep 17 00:00:00 2001
From: Matiss Janis Aboltins <matiss@mja.lv>
Date: Sat, 1 Apr 2023 20:13:09 +0100
Subject: [PATCH] :bug: (autocomplete) remove portal from table view for
 smoother experience (#839)

---
 .../src/components/accounts/TransactionsTable.js            | 6 ++++--
 .../src/components/autocomplete/autocomplete-styles.js      | 1 +
 upcoming-release-notes/839.md                               | 6 ++++++
 3 files changed, 11 insertions(+), 2 deletions(-)
 create mode 100644 upcoming-release-notes/839.md

diff --git a/packages/desktop-client/src/components/accounts/TransactionsTable.js b/packages/desktop-client/src/components/accounts/TransactionsTable.js
index bfb28bc78..fc334eac7 100644
--- a/packages/desktop-client/src/components/accounts/TransactionsTable.js
+++ b/packages/desktop-client/src/components/accounts/TransactionsTable.js
@@ -387,7 +387,6 @@ function PayeeCell({
   transaction,
   payee,
   transferAcct,
-  importedPayee,
   isPreview,
   onEdit,
   onUpdate,
@@ -403,7 +402,7 @@ function PayeeCell({
       name="payee"
       value={payeeId}
       valueStyle={[valueStyle, inherited && { color: colors.n8 }]}
-      formatter={value => getPayeePretty(transaction, payee, transferAcct)}
+      formatter={() => getPayeePretty(transaction, payee, transferAcct)}
       exposed={focused}
       onExpose={!isPreview && (name => onEdit(id, name))}
       onUpdate={async value => {
@@ -448,6 +447,7 @@ function PayeeCell({
               onSelect={onSave}
               onManagePayees={() => onManagePayees(payeeId)}
               isCreatable
+              menuPortalTarget={undefined}
             />
           </>
         );
@@ -776,6 +776,7 @@ export const Transaction = React.memo(function Transaction(props) {
               inputProps={{ onBlur, onKeyDown, style: inputStyle }}
               onUpdate={onUpdate}
               onSelect={onSave}
+              menuPortalTarget={undefined}
             />
           )}
         </CustomCell>
@@ -985,6 +986,7 @@ export const Transaction = React.memo(function Transaction(props) {
               inputProps={{ onBlur, onKeyDown, style: inputStyle }}
               onUpdate={onUpdate}
               onSelect={onSave}
+              menuPortalTarget={undefined}
             />
           )}
         </CustomCell>
diff --git a/packages/desktop-client/src/components/autocomplete/autocomplete-styles.js b/packages/desktop-client/src/components/autocomplete/autocomplete-styles.js
index 742b08b39..858f0e5cd 100644
--- a/packages/desktop-client/src/components/autocomplete/autocomplete-styles.js
+++ b/packages/desktop-client/src/components/autocomplete/autocomplete-styles.js
@@ -25,6 +25,7 @@ const colourStyles = {
   }),
   menu: (styles, { selectProps }) => ({
     ...styles,
+    minWidth: 200,
     backgroundColor: colors.n1,
     marginTop: 2,
     marginBottom: 2,
diff --git a/upcoming-release-notes/839.md b/upcoming-release-notes/839.md
new file mode 100644
index 000000000..a78a62346
--- /dev/null
+++ b/upcoming-release-notes/839.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [MatissJanis]
+---
+
+Autocomplete: remove portalization from usage in transaction table in order to improve the UX
-- 
GitLab