diff --git a/ui/src/views/operate-log/index.vue b/ui/src/views/operate-log/index.vue
index dc2503cfe..d357bda4c 100644
--- a/ui/src/views/operate-log/index.vue
+++ b/ui/src/views/operate-log/index.vue
@@ -131,12 +131,20 @@
- {{
- row.operate +
- (row.operation_object && row.operation_object.name
- ? `【${row.operation_object.name}】`
- : '')
- }}
+
+
+ {{
+ row.operate +
+ (row.operation_object?.name ? `【${row.operation_object.name}】` : '')
+ }}
+
+
{
.text-button {
font-size: 14px;
}
+.text-ellipsis {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 100%;
+ display: block;
+}