Skip to content

Commit

Permalink
fix(frontend): 线上问题高优先级需求及问题修复 #2094
Browse files Browse the repository at this point in the history
  • Loading branch information
jinquantianxia authored and zhangzhw8 committed Nov 28, 2023
1 parent 7d8dba9 commit b20de46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
* 清空日志
*/
const handleClearLog = () => {
logRef.value.handleLogClear();
logRef.value?.handleLogClear();
};

/**
Expand Down
1 change: 1 addition & 0 deletions dbm-ui/frontend/src/views/task-history/pages/Details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@
};

const handleNodeMouseEnter = (node: GraphNode, event: MouseEvent) => {
logState.node = node;
if (event.target) {
const targetEl = event.target as HTMLElement;
targetEl.className = `${targetEl.className} mouse-hover`;
Expand Down

0 comments on commit b20de46

Please sign in to comment.