Kasper Fabricius Kristensen
|
f4c489fb85
|
fix(admin-ui): Fix issue with null product categories (#5707)
* fix(admin-ui): If categories is null on a product the details page should not crash
* cleanup variant warning to reflect pricing changes
|
2023-11-24 12:51:32 +00:00 |
|
Rick Lam
|
b4e8adfcf9
|
fix(admin-ui): Admin UI: Invalid Request Header (#5548)
**What**
Fix of https://github.com/medusajs/medusa/issues/4904
**Fixes**
Admin run development server with hostname shown Invalid Request Header
**How**
Added webpack-dev-server config [allowedHosts](https://webpack.js.org/configuration/dev-server/#devserverallowedhosts) and [webSocketUrl](https://webpack.js.org/configuration/dev-server/#websocketurl) in admin develop options to change allowlist services hostname and Web Socket Url
**Testing**
Edit medusa-config.js with hostname in admin plugin develop options
```
const plugins = [
// ...
{
resolve: "@medusajs/admin",
/** @type {import('@medusajs/admin').PluginOptions} */
options: {
develop: {
allowedHosts: [
'host.com',
'subdomain.host.com',
'subdomain2.host.com',
'host2.com',
],
webSocketURL: 'wss://host.com/ws'
},
},
},
]
```
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
|
2023-11-09 12:32:27 +00:00 |
|
Kasper Fabricius Kristensen
|
b69f182571
|
fix(admin-ui): modify webpack config to prevent throwing sourcemap errors (#5484)
|
2023-10-30 12:06:58 +01:00 |
|
Oli Juhl
|
c722440c30
|
fix(admin-ui): Load translations from path (#5064)
* fix(admin-ui): Load translations from path
* Create big-oranges-battle.md
* fix: resolve public folder path in dev
---------
Co-authored-by: Kasper <kasper@medusajs.com>
|
2023-09-15 13:19:24 +02:00 |
|
Geoffroy Empain
|
afd4e72cdf
|
feat(admin-ui): Multi-language support (#4962)
|
2023-09-12 14:53:48 +02:00 |
|
Kasper Fabricius Kristensen
|
f1a05f4725
|
feat(admin, admin-ui, medusa-js, medusa-react, medusa): Support Admin Extensions (#4761)
Co-authored-by: Rares Stefan <948623+StephixOne@users.noreply.github.com>
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
|
2023-08-17 12:14:45 +00:00 |
|