Skip to content

Commit 0e0f443

Browse files
committed
fix: change tag color for access log in NginxLogList component
1 parent b4553e6 commit 0e0f443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/views/nginx_log/NginxLogList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const columns: StdTableColumn[] = [
1212
title: () => $gettext('Type'),
1313
dataIndex: 'type',
1414
customRender: (args: CustomRenderArgs) => {
15-
return args.record?.type === 'access' ? <Tag color="success">{ $gettext('Access Log') }</Tag> : <Tag color="orange">{ $gettext('Error Log') }</Tag>
15+
return args.record?.type === 'access' ? <Tag color="green">{ $gettext('Access Log') }</Tag> : <Tag color="orange">{ $gettext('Error Log') }</Tag>
1616
},
1717
sorter: true,
1818
search: {

0 commit comments

Comments
 (0)