Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab5486 commit a1e6c45Copy full SHA for a1e6c45
site/src/components/AuditLogRow/AuditLogRow.tsx
@@ -19,6 +19,11 @@ import { AuditLogDescription } from "./AuditLogDescription"
19
import { determineGroupDiff } from "./auditUtils"
20
21
const httpStatusColor = (httpStatus: number): PaletteIndex => {
22
+ // redirects are successful
23
+ if (httpStatus === 307) {
24
+ return "success"
25
+ }
26
+
27
if (httpStatus >= 300 && httpStatus < 500) {
28
return "warning"
29
}
0 commit comments