Skip to content

Commit 8838922

Browse files
CopilotEVDOG4LIFE
andauthored
Fix status code filter to match responseStatusCode column ID (#2690)
* Initial plan * Fix status code filter to use case-insensitive includes check Co-authored-by: EVDOG4LIFE <23223867+EVDOG4LIFE@users.noreply.github.com> * Apply formatting fixes (remove trailing whitespace) Co-authored-by: EVDOG4LIFE <23223867+EVDOG4LIFE@users.noreply.github.com> * Remove unnecessary test file per code review feedback Co-authored-by: EVDOG4LIFE <23223867+EVDOG4LIFE@users.noreply.github.com> * Use strict equality check for responseStatusCode Co-authored-by: EVDOG4LIFE <23223867+EVDOG4LIFE@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: EVDOG4LIFE <23223867+EVDOG4LIFE@users.noreply.github.com>
1 parent 849ced0 commit 8838922

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/filters/quickFilters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function addFilterAndApply(
4545
if (value || arrayValues?.length) {
4646
if (colId === 'sourceSize' || colId === 'buildSize') {
4747
addSizeFilter(value, colId, columns);
48-
} else if (colId === 'statusCode') {
48+
} else if (colId === 'responseStatusCode') {
4949
addStatusCodeFilter(value, colId, columns);
5050
} else if (
5151
colId === '$createdAt' ||

0 commit comments

Comments
 (0)