8000 fix(devtools): change popover mode to hover · romhml/compodium@1333fb1 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 1333fb1

Browse files
committed
fix(devtools): change popover mode to hover
1 parent 916ffee commit 1333fb1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/devtools/app/components/ComboInput.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ function updateValue(item: ComboItem) {
3030
</script>
3131

3232
<template>
33-
<UPopover :ui="{ content: 'flex flex-wrap justify-center p-2 max-w-64' }">
33+
<UPopover
34+
:ui="{ content: 'flex flex-wrap justify-center p-2 max-w-64' }"
35+
mode="hover"
36+
>
3437
<UButton
3538
variant="link"
3639
color="neutral"

packages/devtools/app/components/inputs/DateInput.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const calendarDate = computed({
2121
</script>
2222

2323
<template>
24-
<UPopover>
24+
<UPopover mode="hover">
2525
<UButton
2626
color="neutral"
2727
variant="subtle"

packages/devtools/app/components/inputs/IconInput.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const visibleIcons = computed(() => {
5353
</script>
5454

5555
<template>
56-
<UPopover>
56+
<UPopover mode="hover">
5757
<UButtonGroup>
5858
<UButton
5959
:icon="modelValue"

0 commit comments

Comments
 (0)
0