diff --git a/components/Panel/Item/FilterPanel.vue b/components/Panel/Item/FilterPanel.vue index 95f5f5a..114a7dc 100644 --- a/components/Panel/Item/FilterPanel.vue +++ b/components/Panel/Item/FilterPanel.vue @@ -147,7 +147,7 @@ /** * The current opened tag selecter component */ - selectedTagSelecter: CheckBoxSelecter | undefined = undefined; + selectedTagSelecter: CheckBoxSelecter | RadioButtonSelecter | undefined = undefined; /** * If active, the input form is displayed to let the user enters the name of the favorite */ @@ -406,7 +406,7 @@ * Save the current tagSelecter or close a tag selecter if previously activated * @param tagSelecter */ - toggleList(tagSelecter: CheckBoxSelecter) { + toggleList(tagSelecter: CheckBoxSelecter | RadioButtonSelecter) { if (this.selectedTagSelecter !== undefined) { // @ts-ignore this.selectedTagSelecter.closeList(); diff --git a/components/Panel/Panel.vue b/components/Panel/Panel.vue index 678bc51..f06f68a 100644 --- a/components/Panel/Panel.vue +++ b/components/Panel/Panel.vue @@ -127,7 +127,7 @@ .panel__main { .panel__nav__wrapper { - position: sticky; + position: absolute; top: 0; left: 0; right: 0; diff --git a/components/Panel/PanelItem.vue b/components/Panel/PanelItem.vue index 9475b14..774e22b 100644 --- a/components/Panel/PanelItem.vue +++ b/components/Panel/PanelItem.vue @@ -55,6 +55,7 @@