Skip to content
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

Create August 26, 2024 Release #1198

Merged
merged 19 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
84e269d
fix: Basic snapshot testing (#1175)
stalgiag Jul 29, 2024
8e328c5
Decompose and organize `import-tests` script (#1165)
stalgiag Jul 29, 2024
abe3086
fix: Update and expand `/client` tests (#1169)
howard-e Jul 29, 2024
7f6d795
Ensure that "Target Days X Past" is not included in snapshot (#1181)
stalgiag Jul 30, 2024
85d5e63
Add Dean Hamack (@tactics2) as a tester (#1185)
jscholes Jul 31, 2024
945d875
Filter Days Away in snapshots (#1183)
stalgiag Jul 31, 2024
3192435
Improved `atVersion.supportedByAutomation` field handling (#1182)
stalgiag Jul 31, 2024
dd4b8c2
feat: Use standardized gql fragments in queries.js files (#1147)
howard-e Jul 31, 2024
f9e90a5
Flatten migrations (#1187)
howard-e Aug 5, 2024
9013e81
Move date related functions to @shared/dates (#1191)
howard-e Aug 6, 2024
b2b0560
feat: Test navigation via URI fragment (#1188)
stalgiag Aug 6, 2024
b0d91ba
Reusable proptypes (#1189)
stalgiag Aug 8, 2024
c64e584
feat: Content updates to Candidate Review page (#1186)
stalgiag Aug 14, 2024
3694a16
Update snapshot
stalgiag Aug 14, 2024
5f2de7a
Upgrade puppeteer to v23 and fix intermittent CI issues (#1193)
stalgiag Aug 15, 2024
721d04e
Update cleaner to account for dynamic Run History date (#1194)
howard-e Aug 15, 2024
39033e6
Address sandbox deployment issue (#1190)
howard-e Aug 19, 2024
a80b80b
fix: Only match with single alphanumeric keys in "Assign Testers" dro…
stalgiag Aug 19, 2024
eb8f9ea
fix: Radio buttons for assertion verdicts (#1161)
stalgiag Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Only match with single alphanumeric keys in "Assign Testers" dro…
…pdown search, ignore Tab (#1196)
  • Loading branch information
stalgiag authored Aug 19, 2024
commit a80b80b447be82eaac7dbc0e15724ebae0c51cca
2 changes: 1 addition & 1 deletion client/components/TestQueue/AssignTesters.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const AssignTesters = ({ me, testers, testPlanReport }) => {

const onKeyDown = event => {
const { key } = event;
if (key.match(/[0-9a-zA-Z]/)) {
if (key.length === 1 && key.match(/[a-zA-Z0-9]/)) {
const container = event.target.closest('[role=menu]');
const matchingMenuItem = Array.from(container.children).find(menuItem => {
return menuItem.innerText
Expand Down
Loading