diff --git a/client/admin/lockTools/lockTools.jsx b/client/admin/lockTools/lockTools.jsx
index 58829eacf..7f92cdd0e 100644
--- a/client/admin/lockTools/lockTools.jsx
+++ b/client/admin/lockTools/lockTools.jsx
@@ -174,35 +174,42 @@ const LockTable = createClass({
render : function () {
return <>
-
{this.props.title}
-
- {this.state.result[this.props.resultName] &&
- <>
- Total Reviews Waiting: {this.state.result[this.props.resultName].length}
-
-
-
- {this.props.propertyNames.map((name, idx)=>{
- return | {name} | ;
- })}
-
-
-
- {this.state.result[this.props.resultName].map((result, resultIdx)=>{
- return {navigator.clipboard.writeText(result.shareId.toString());}}>
- {this.props.propertyNames.map((name, nameIdx)=>{
- return |
- {result[name].toString()}
- | ;
- })}
-
;
- })}
-
-
- >
- }
+
+
+
{this.props.title}
+
+
+ {this.state.result[this.props.resultName] &&
+ <>
+
Total Reviews Waiting: {this.state.result[this.props.resultName].length}
+
+
Click a row to copy the Share ID to the clipboard
+
+
+
+ {this.props.propertyNames.map((name, idx)=>{
+ return | {name} | ;
+ })}
+
+
+
+ {this.state.result[this.props.resultName].map((result, resultIdx)=>{
+ return {navigator.clipboard.writeText(result.shareId.toString());}}>
+ {this.props.propertyNames.map((name, nameIdx)=>{
+ return |
+ {result[name].toString()}
+ | ;
+ })}
+
;
+ })}
+
+
+ >
+ }
+
>;
}
});