2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 05:46:34 +00:00

React interface updates (#5798)

* Fix for <ActionDropdown> component

- Ensure component key is set properly

* Update <PageDetail> component

- Consolidate and simplify

* Update proxy settings for react development

* Fixes for StatusRenderer component

- Cannot use state hook inside function

* Add PurchaseOrderDetail page

* Tweak ApiImage component

* Add "ReceivedStock" table to PurchaseOrder detail page

* Add SalesOrderDetail page

* Add ReturnOrderDetail page

* Cleanup unused variables

* Remove import for unused icon
This commit is contained in:
Oliver
2023-10-27 14:39:17 +11:00
committed by GitHub
parent 22e9b14743
commit 0acfaced83
23 changed files with 470 additions and 76 deletions

View File

@ -28,6 +28,16 @@ export default defineConfig({
target: 'http://localhost:8000',
changeOrigin: true,
secure: true
},
'/media': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: true
},
'/static': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: true
}
},
watch: {