aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/views/DashboardView.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/DashboardView.tsx b/src/client/views/DashboardView.tsx
index 37a70f165..9f497dcbf 100644
--- a/src/client/views/DashboardView.tsx
+++ b/src/client/views/DashboardView.tsx
@@ -117,10 +117,10 @@ export class DashboardView extends React.Component {
<div className="info">
<div className="title"> {StrCast(dashboard.title)} </div>
<div className="more" onPointerDown={e => {
- this._downX = e.clientX;
- this._downY = e.clientY;
- }}
- onContextMenu={(e) => {this.onContextMenu(dashboard, e)}}
+ this._downX = e.clientX;
+ this._downY = e.clientY;
+ }}
+ onClick={(e) => {this.onContextMenu(dashboard, e)}}
>
<FontAwesomeIcon color="black" size="lg" icon="bars" />
</div>