-
Notifications
You must be signed in to change notification settings - Fork 451
Add queue overlay inline progress and controls #7338
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
Open
benceruleanlu
wants to merge
17
commits into
queue-overlay-deletions
Choose a base branch
from
queue-overlay-additions
base: queue-overlay-deletions
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9863aa6
Add queue overlay inline progress and controls
benceruleanlu ee47684
Remove useless watcheffect
benceruleanlu 4a8975a
Merge remote-tracking branch 'origin/queue-overlay-deletions' into qu…
benceruleanlu d7d03be
Remove unused i18n string
benceruleanlu 24ab32d
[automated] Update test expectations
invalid-email-address 73678e0
Restore Panel
benceruleanlu 18303fa
Merge branch 'queue-overlay-additions' of https://github.com/Comfy-Or…
benceruleanlu 53dbca9
Add queue overlay tests and stories (#7342)
benceruleanlu 66f4dac
Simplify docked by using model macro
benceruleanlu b10e67f
Use usei18n
benceruleanlu fdaba3a
Merge branch 'queue-overlay-additions' of https://github.com/Comfy-Or…
benceruleanlu 51d2046
Ensure don't round to 0 hours
benceruleanlu 04de43f
Translate hours text in popover
benceruleanlu d48aabb
Fix aria for QIPS
benceruleanlu 7c5859e
Cleanup listeners on unmount
benceruleanlu eb5327b
Remove unused allTasksSorted
benceruleanlu 6f52357
Minor dry nit
benceruleanlu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Merge remote-tracking branch 'origin/queue-overlay-deletions' into qu…
…eue-overlay-additions
- Loading branch information
commit 4a8975ad27c07b3173af6a56367e904286750cfd
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
You are viewing a condensed version of this merge commit. You can view the full changes here.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The variable
tabContaineris queried from the DOM at the module level (line 144), which means it's evaluated when the module is first imported. This may execute before the DOM is fully rendered, potentially resulting innull. Consider moving this query insideonMountedor using a computed property to ensure the element exists when it's accessed.