diff options
author | mabashian <mabashia@redhat.com> | 2021-06-10 22:42:03 +0200 |
---|---|---|
committer | Shane McDonald <me@shanemcd.com> | 2021-06-16 21:41:07 +0200 |
commit | 32cee852f0351e1a0f5c5ba2b3a7450b482a225a (patch) | |
tree | 1d32e83f0696132b3442dd437cff5cd18b397b50 | |
parent | Fixes bug where source list page would crash if first sync was running (diff) | |
download | awx-32cee852f0351e1a0f5c5ba2b3a7450b482a225a.tar.xz awx-32cee852f0351e1a0f5c5ba2b3a7450b482a225a.zip |
Swap underscore for hyphen
-rw-r--r-- | awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx index e3274c19a2..ee05909ba4 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx +++ b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx @@ -25,7 +25,7 @@ import InventorySourceListItem from './InventorySourceListItem'; import useWsInventorySources from './useWsInventorySources'; import { relatedResourceDeleteRequests } from '../../../util/getRelatedResourceDeleteDetails'; -const QS_CONFIG = getQSConfig('inventory_sources', { +const QS_CONFIG = getQSConfig('inventory-sources', { page: 1, page_size: 20, order_by: 'name', |