Skip to content

Commit

Permalink
Refactor #3099
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Oct 12, 2022
1 parent 2e7458f commit 48757ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panelmenu/PanelMenu.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="p-panelmenu p-component">
<div :id="id" class="p-panelmenu p-component">
<template v-for="(item, index) of model" :key="getPanelKey(index)">
<div v-if="isItemVisible(item)" :style="getItemProp(item, 'style')" :class="getPanelClass(item)">
<div
Expand Down
1 change: 1 addition & 0 deletions src/components/panelmenu/PanelMenuSub.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<div v-show="isItemActive(processedItem)" class="p-toggleable-content">
<PanelMenuSub
v-if="isItemVisible(processedItem) && isItemGroup(processedItem)"
:id="getItemId(processedItem) + '_list'"
role="group"
:panelId="panelId"
:focusedItemId="focusedItemId"
Expand Down

0 comments on commit 48757ff

Please sign in to comment.