diff --git a/src/Common.js b/src/Common.js index a824e61..2099328 100644 --- a/src/Common.js +++ b/src/Common.js @@ -46,7 +46,7 @@ export class HighlightedText extends PureComponent {
                     {parts.map((p,idx)=>(
                         {
-                            PID_RE.test(p) ? {this.props.show_pid(p)}}>{p} :
+                            PID_RE.test(p) ? {e.preventDefault(); this.props.show_pid(p);}}>{p} :
                             NICKNAME_RE.test(p) ? {p} :
                             p
                         }
diff --git a/src/Flows.css b/src/Flows.css
index 09759fd..e3d9bd4 100644
--- a/src/Flows.css
+++ b/src/Flows.css
@@ -23,7 +23,7 @@
     align-items: flex-start;
     width: calc(100% - 625px);
     margin-left: -25px;
-    padding-left: 20px;
+    padding-left: 18px;
     overflow-x: auto;
 }
 
@@ -63,7 +63,7 @@
 .left-container .flow-reply {
     flex: 0 0 300px;
     max-height: 15em;
-    margin-right: -5px;
+    margin-right: -7px;
     overflow-y: hidden;
 }
 
diff --git a/src/Flows.js b/src/Flows.js
index bfd1c4d..e3a48a5 100644
--- a/src/Flows.js
+++ b/src/Flows.js
@@ -94,8 +94,15 @@ function FlowItem(props) {