From 54d075e4fd351e807ad75b44705d89cd8f55d70f Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Mon, 12 Aug 2024 17:53:35 +0200 Subject: [PATCH] Correctly load bootstrap radio component (#15293) --- website/client/src/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/client/src/main.js b/website/client/src/main.js index 165ad6cd3e..2687153f57 100644 --- a/website/client/src/main.js +++ b/website/client/src/main.js @@ -6,6 +6,7 @@ import { PopoverPlugin, FormPlugin, FormInputPlugin, + FormRadioPlugin, TooltipPlugin, NavbarPlugin, CollapsePlugin, @@ -43,6 +44,7 @@ Vue.use(DropdownPlugin); Vue.use(PopoverPlugin); Vue.use(FormPlugin); Vue.use(FormInputPlugin); +Vue.use(FormRadioPlugin); Vue.use(TooltipPlugin); Vue.use(NavbarPlugin); Vue.use(CollapsePlugin);