diff --git a/app/components/invoices/Invoice.jsx b/app/components/invoices/Invoice.jsx
index 901ff341..0631c15d 100644
--- a/app/components/invoices/Invoice.jsx
+++ b/app/components/invoices/Invoice.jsx
@@ -177,7 +177,6 @@ class Invoice extends PureComponent {
);
}
-
case 'paid': {
return (
@@ -186,7 +185,6 @@ class Invoice extends PureComponent {
);
}
-
case 'refunded': {
return (
@@ -244,10 +242,12 @@ class Invoice extends PureComponent {
- {truncate(invoice._id, {
- length: 8,
- omission: '',
- })}
+ { invoice.invoiceID
+ ? invoice.invoiceID
+ : truncate(invoice._id, {
+ length: 8,
+ omission: '', })
+ }
diff --git a/app/components/settings/Invoice.jsx b/app/components/settings/Invoice.jsx
index 9c99cdd8..689a4169 100644
--- a/app/components/settings/Invoice.jsx
+++ b/app/components/settings/Invoice.jsx
@@ -191,6 +191,18 @@ class Invoice extends Component {
+
+
+
+
-