-
Notifications
You must be signed in to change notification settings - Fork 420
Fix job details popover sticking after cancel/delete #6930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🎭 Playwright Test Results⏰ Completed at: 11/25/2025, 09:58:47 PM UTC 📈 Summary
📊 Test Reports by Browser
🎉 Click on the links above to view detailed test results for each browser configuration. |
🎨 Storybook Build Status✅ Build completed successfully! ⏰ Completed at: 11/25/2025, 09:49:52 PM UTC 🔗 Links🎉 Your Storybook is ready for review! |
Bundle Size ReportSummary
Category Glance Per-category breakdownApp Entry Points — 3.18 MB (baseline 3.18 MB) • ⚪ 0 BMain entry bundles and manifests
Status: 3 added / 3 removed Graph Workspace — 945 kB (baseline 944 kB) • 🔴 +796 BGraph editor runtime, canvas, workflow orchestration
Status: 1 added / 1 removed Views & Navigation — 6.54 kB (baseline 6.54 kB) • ⚪ 0 BTop-level views, pages, and routed surfaces
Status: 1 added / 1 removed Panels & Settings — 297 kB (baseline 297 kB) • ⚪ 0 BConfiguration panels, inspectors, and settings screens
Status: 6 added / 6 removed UI Components — 139 kB (baseline 139 kB) • ⚪ 0 BReusable component library chunks
Status: 6 added / 6 removed Data & Services — 12.5 kB (baseline 12.5 kB) • ⚪ 0 BStores, services, APIs, and repositories
Status: 2 added / 2 removed Utilities & Hooks — 2.94 kB (baseline 2.94 kB) • ⚪ 0 BHelpers, composables, and utility bundles
Status: 1 added / 1 removed Vendor & Third-Party — 8.56 MB (baseline 8.56 MB) • ⚪ 0 BExternal libraries and shared vendor chunks
Other — 3.84 MB (baseline 3.84 MB) • ⚪ 0 BBundles that do not match a named category
Status: 18 added / 18 removed |
Is timing out, pretty sure it's unrelated. |
| const allJobIds = computed(() => | ||
| displayedJobGroups.value.flatMap((group) => | ||
| group.items.map((item) => item.id) | ||
| ) | ||
| ) | ||
| watch(allJobIds, (ids) => { | ||
| if (activeDetailsId.value && !ids.includes(activeDetailsId.value)) { | ||
| clearHideTimer() | ||
| clearShowTimer() | ||
| activeDetailsId.value = null | ||
| } | ||
| }) | ||
| onBeforeUnmount(() => { | ||
| clearHideTimer() | ||
| clearShowTimer() | ||
| }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How expensive is this with a long history?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a maxhistory of 64, if that gets removed, then it might be bad after a few thousand? Technically speaking this can be removed and each case handled on its own.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do plan to allow scrolling through history and not removing the tail and the maxhistory is configurable right? This isn't really blocking though
| defineProps<{ displayedJobGroups: JobGroup[] }>() | ||
| const props = defineProps<{ displayedJobGroups: JobGroup[] }>() | ||
| const displayedJobGroups = computed(() => props.displayedJobGroups) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Props should be reactive by default.
|
I see the replies and will get to the fixes soon it's technically not blocking, yes, but like, it's probably going to get lost after someone merges but of course now that I say that explicitly it'll never get lost and haunt me until I fix it |
Summary
Fixes #6907
Testing
┆Issue is synchronized with this Notion page by Unito