File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
site/src/pages/AuditPage/AuditLogRow Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -172,9 +172,12 @@ export const AuditLogRow: FC<AuditLogRowProps> = ({
172
172
< div >
173
173
< h4 css = { styles . auditLogInfoHeader } > Reason:</ h4 >
174
174
< div >
175
- { buildReasonLabels [
176
- auditLog . additional_fields . build_reason as BuildReason
177
- ] }
175
+ {
176
+ buildReasonLabels [
177
+ auditLog . additional_fields
178
+ . build_reason as BuildReason
179
+ ]
180
+ }
178
181
</ div >
179
182
</ div >
180
183
) }
@@ -214,9 +217,12 @@ export const AuditLogRow: FC<AuditLogRowProps> = ({
214
217
< span css = { styles . auditLogInfo } >
215
218
< span > Reason: </ span >
216
219
< strong >
217
- { buildReasonLabels [
218
- auditLog . additional_fields . build_reason as BuildReason
219
- ] }
220
+ {
221
+ buildReasonLabels [
222
+ auditLog . additional_fields
223
+ . build_reason as BuildReason
224
+ ]
225
+ }
220
226
</ strong >
221
227
</ span >
222
228
) }
You can’t perform that action at this time.
0 commit comments