Skip to content

Commit

Permalink
fix(web): fix connections list context menu bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-Asuka committed Aug 12, 2022
1 parent a036f6b commit 015670c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion web/src/components/MsgPublish.vue
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,6 @@ export default class MsgPublish extends Vue {
right: 0;
top: 70px;
.history-icon {
width: 70px;
height: 10px;
.el-button + .el-button {
margin-left: 5px;
Expand Down
2 changes: 1 addition & 1 deletion web/src/views/connections/ConnectionsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:key="item.id"
:class="['connection-item', { active: item.id === connectionId }]"
@click="handleSelectConnection(item)"
@contextmenu="handleContextMenu(item, $event)"
@contextmenu.prevent="handleContextMenu(item, $event)"
>
<div class="item-left">
<div
Expand Down

0 comments on commit 015670c

Please sign in to comment.