Skip to content

Commit

Permalink
🐛 Tool menu
Browse files Browse the repository at this point in the history
  • Loading branch information
saitenntaisei committed Nov 2, 2023
1 parent 0084757 commit 0194a2d
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
:is-archived="channelState.archived"
@click-more="togglePopupMenu"
>
<click-outside v-if="isPopupMenuShown" @click-outside="closePopupMenu">
<click-outside
v-if="isPopupMenuShown"
@click-outside.stop="closePopupMenu"
>
<channel-header-tools-menu
:class="$style.toolsMenu"
:channel-id="channelId"
Expand All @@ -21,12 +24,12 @@
</template>

<script lang="ts" setup>
import type { ChannelId } from '/@/types/entity-ids'
import useChannelState from './composables/useChannelState'
import ClickOutside from '/@/components/UI/ClickOutside'
import ChannelHeaderToolsList from './ChannelHeaderToolsList.vue'
import ChannelHeaderToolsMenu from './ChannelHeaderToolsMenu.vue'
import useChannelState from './composables/useChannelState'
import ClickOutside from '/@/components/UI/ClickOutside'
import useToggle from '/@/composables/utils/useToggle'
import type { ChannelId } from '/@/types/entity-ids'
const props = defineProps<{
channelId: ChannelId
Expand Down

0 comments on commit 0194a2d

Please sign in to comment.