Conversation
* Filtering by stableBeamsStart and stableBeamsEnd has been added to LHC Fills overview page * lhcFills endpoint & DTO validation modified and testing added for the aforementioned changes --------- Co-authored-by: GuustMetz <guust.metz@cern.ch> Co-authored-by: Guust <metzguust@gmail.com>
* Replaced the two-query pattern with a single queryBuilder in GetAllEnvironmentsUseCase. The previous approach was redundant following Sequelize performance improvements; furthermore, the original implementation's logic was flawed which resulted in the pagination bug.
added 7 commits
April 22, 2026 16:43
04ce63d to
cbd335d
Compare
NarrowsProjects
commented
Apr 23, 2026
| module.exports.fillInput = async (page, inputSelector, value, events = ['input']) => { | ||
| await page.waitForSelector(inputSelector); | ||
| await page.evaluate((inputSelector, value, events) => { | ||
| await page.waitForFunction((inputSelector, value, events) => { |
Collaborator
Author
There was a problem hiding this comment.
To the reviewers:
This is a stealth fix for a problem that happens for a couple of tests occasionally:
TypeError: Cannot set properties of null (setting 'value')
at evaluate (evaluate at module.exports.fillInput (test/public/defaults.js:671:16), <anonymous>:2:22)This happens because between waitForSelector and the evaluate the selector ceases to be valid.
The waitForFunction guard is more more robust waitForSelector in this scenario.
As this PR adds tests that make back-to-back use of fillInput I thought it appropriate to add it here.
4a30d27 to
ae6c287
Compare
added 2 commits
May 4, 2026 18:10
…odel-to-extend-FilterModel-or-SelectionModel' into feature/O2B-1556/Configure-FilteringModel-observability-to-set-active-filters-to-the-url
Base automatically changed from
improv/O2B-1557/Force-all-filters-managed-by-FilteringModel-to-extend-FilterModel-or-SelectionModel
to
main
May 4, 2026 17:41
added 3 commits
May 5, 2026 09:08
…servability-to-set-active-filters-to-the-url
graduta
approved these changes
May 5, 2026
Member
graduta
left a comment
There was a problem hiding this comment.
I think it would be good if we also move away from page identifiers as hard-coded strings and use a map/enum for this. Could you please create a ticket so that we do not forget about this?
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I have a JIRA ticket
Notable changes for users:
Notable changes for developers:
Changes made to the database: