Seth commited on
Commit ·
7debd2c
1
Parent(s): ef62d3d
update
Browse files
frontend/src/pages/Deals.jsx
CHANGED
|
@@ -581,7 +581,7 @@ function DealRow({
|
|
| 581 |
)}
|
| 582 |
</td>
|
| 583 |
<td
|
| 584 |
-
className="px-
|
| 585 |
onClick={(e) => e.stopPropagation()}
|
| 586 |
>
|
| 587 |
<EditableCurrencyCell
|
|
@@ -595,8 +595,8 @@ function DealRow({
|
|
| 595 |
if (!Number.isFinite(n)) return;
|
| 596 |
patchDeal(deal.id, { deal_value: n });
|
| 597 |
}}
|
| 598 |
-
className="w-full"
|
| 599 |
-
inputClassName="min-w-
|
| 600 |
/>
|
| 601 |
</td>
|
| 602 |
<td className="px-3 py-2 align-top max-w-[7.5rem]" onClick={(e) => e.stopPropagation()}>
|
|
@@ -1165,7 +1165,9 @@ export default function Deals() {
|
|
| 1165 |
<th className="px-3 py-2 font-medium">Deal</th>
|
| 1166 |
<th className="px-3 py-2 font-medium">Stage</th>
|
| 1167 |
<th className="px-3 py-2 font-medium">Owner</th>
|
| 1168 |
-
<th className="px-
|
|
|
|
|
|
|
| 1169 |
<th className="px-3 py-2 font-medium">Revenue</th>
|
| 1170 |
<th className="px-3 py-2 font-medium">Contacts</th>
|
| 1171 |
<th className="px-3 py-2 font-medium">Accounts</th>
|
|
|
|
| 581 |
)}
|
| 582 |
</td>
|
| 583 |
<td
|
| 584 |
+
className="px-2 py-2 align-top tabular-nums w-[9rem] max-w-[9rem] shrink-0"
|
| 585 |
onClick={(e) => e.stopPropagation()}
|
| 586 |
>
|
| 587 |
<EditableCurrencyCell
|
|
|
|
| 595 |
if (!Number.isFinite(n)) return;
|
| 596 |
patchDeal(deal.id, { deal_value: n });
|
| 597 |
}}
|
| 598 |
+
className="w-full min-w-0 max-w-full"
|
| 599 |
+
inputClassName="min-w-0 w-full max-w-full tabular-nums text-right text-sm py-1"
|
| 600 |
/>
|
| 601 |
</td>
|
| 602 |
<td className="px-3 py-2 align-top max-w-[7.5rem]" onClick={(e) => e.stopPropagation()}>
|
|
|
|
| 1165 |
<th className="px-3 py-2 font-medium">Deal</th>
|
| 1166 |
<th className="px-3 py-2 font-medium">Stage</th>
|
| 1167 |
<th className="px-3 py-2 font-medium">Owner</th>
|
| 1168 |
+
<th className="px-2 py-2 font-medium text-right w-[9rem] max-w-[9rem]">
|
| 1169 |
+
Deal value
|
| 1170 |
+
</th>
|
| 1171 |
<th className="px-3 py-2 font-medium">Revenue</th>
|
| 1172 |
<th className="px-3 py-2 font-medium">Contacts</th>
|
| 1173 |
<th className="px-3 py-2 font-medium">Accounts</th>
|