From 44d5b5477bcb6d071fa626ab8cfa2f2a50e5ebe3 Mon Sep 17 00:00:00 2001 From: Tim Fischbach Date: Mon, 8 Jul 2024 12:05:24 +0200 Subject: [PATCH] Export default navigation widget component First step towards enabling custom navigation widgets based on default navigation. REDMINE-20674 --- .../scrolled/package/src/widgets/defaultNavigation/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entry_types/scrolled/package/src/widgets/defaultNavigation/index.js b/entry_types/scrolled/package/src/widgets/defaultNavigation/index.js index 49eccd084c..c4167c9795 100644 --- a/entry_types/scrolled/package/src/widgets/defaultNavigation/index.js +++ b/entry_types/scrolled/package/src/widgets/defaultNavigation/index.js @@ -4,3 +4,5 @@ import {DefaultNavigation} from './DefaultNavigation'; frontend.widgetTypes.register('defaultNavigation', { component: DefaultNavigation }); + +export {DefaultNavigation};