Skip to content

Commit 22bb48b

Browse files
authored
Merge pull request #72 from netlogix/fix/vanishing-neos-icons
fix: Add indices to Shopware.Component. override and extend functions…
2 parents ed2b97c + 154adda commit 22bb48b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • src/Resources/app/administration/src

src/Resources/app/administration/src/main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ Application.addServiceProvider('nlxConfigService', () => {
5252
return new NlxConfigService();
5353
});
5454

55-
Shopware.Component.override('sw-cms-list', () => import('./module/sw-cms/page/sw-cms-list'));
56-
Shopware.Component.override('sw-cms-list-item', () => import('./module/sw-cms/component/sw-cms-list-item'));
57-
Shopware.Component.override('sw-product-detail-layout', () => import('./module/sw-product/view/sw-product-detail-layout'));
58-
Shopware.Component.override('sw-category-layout-card', () => import('./module/sw-category/component/sw-category-layout-card'));
59-
Shopware.Component.override('sw-product-layout-assignment', () => import('./module/sw-product/component/sw-product-layout-assignment'));
60-
Shopware.Component.override('sw-category-tree', () => import('./module/sw-category/component/sw-category-tree'));
55+
Shopware.Component.override('sw-cms-list', () => import('./module/sw-cms/page/sw-cms-list'), 1000);
56+
Shopware.Component.override('sw-cms-list-item', () => import('./module/sw-cms/component/sw-cms-list-item'), 1000);
57+
Shopware.Component.override('sw-product-detail-layout', () => import('./module/sw-product/view/sw-product-detail-layout'), 1000);
58+
Shopware.Component.override('sw-category-layout-card', () => import('./module/sw-category/component/sw-category-layout-card'), 1000);
59+
Shopware.Component.override('sw-product-layout-assignment', () => import('./module/sw-product/component/sw-product-layout-assignment'), 1000);
60+
Shopware.Component.override('sw-category-tree', () => import('./module/sw-category/component/sw-category-tree'), 1000);
6161
Shopware.Component.extend('nlx-sw-category-tree-item', 'sw-tree-item', () => import('./component/nlx-sw-category-tree-item'));
6262
Shopware.Component.extend('nlx-neos-layout-card', 'sw-category-layout-card', () => import('./component/nlx-neos-layout-card'));
6363
Shopware.Component.extend('nlx-neos-category-list-item', 'sw-cms-list-item', () => import('./component/nlx-neos-category-list-item'));

0 commit comments

Comments
 (0)