We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e034fe commit 950ad13Copy full SHA for 950ad13
1 file changed
app/pages/about.vue
@@ -88,7 +88,12 @@ async function positionPopover(anchorId: string) {
88
if (!popover.matches(':popover-open')) {
89
try {
90
;(popover as any).showPopover()
91
- } catch (e) {}
+ } catch (e) {
92
+ if (import.meta.dev) {
93
+ // oxlint-disable-next-line no-console
94
+ console.warn('[positionPopover] showPopover failed:', e)
95
+ }
96
97
}
98
99
// 3. One more tick to ensure the DOM is actually painted with the content
@@ -161,7 +166,7 @@ function onMouseLeave() {
161
166
} catch (e) {
162
167
if (import.meta.dev) {
163
168
// oxlint-disable-next-line no-console
164
- console.warn('[positionPopover] showPopover failed:', e)
169
+ console.warn('[onMouseLeave] hidePopover failed:', e)
165
170
171
172
activeContributor.value = null
0 commit comments