aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/FormattedTextBox.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-06 23:13:50 -0400
committerbobzel <zzzman@gmail.com>2020-08-06 23:13:50 -0400
commit301b10ba693dc76ebcd42d3fa4020410f2092bee (patch)
treeeb507b7b163549304c46cdd1cf6b3690ff1defc7 /src/client/views/nodes/formattedText/FormattedTextBox.tsx
parent5ed4aa2660b11e87d8d88721d100a15f4a192039 (diff)
fixed lint warnings
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r--src/client/views/nodes/formattedText/FormattedTextBox.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx
index 4b06f2800..b0bf54be6 100644
--- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx
+++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx
@@ -305,7 +305,6 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp
// for inserting timestamps
insertTime = () => {
- let linkTime;
if (this._first) {
this._first = false;
DocListCast(this.dataDoc.links).map((l, i) => {
@@ -318,7 +317,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp
this._linkTime = NumCast(l.anchor1_timecode);
}
- })
+ });
}
this._currentTime = Date.now();
let time;