diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-12-12 21:00:36 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-12-12 21:00:36 -0500 |
commit | eead07720f1f196e9ee81cd44b26759dc44e04f9 (patch) | |
tree | 17e1b9a0d37d81322ed6b2539623e104e0c35351 /src/client/views/ScriptBox.tsx | |
parent | 634475c34cdc49672edebb722e469ed627d495c2 (diff) |
fixed warnings. Limited the size of pasted text boxes
Diffstat (limited to 'src/client/views/ScriptBox.tsx')
-rw-r--r-- | src/client/views/ScriptBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/ScriptBox.tsx b/src/client/views/ScriptBox.tsx index 956e83238..ded2329b4 100644 --- a/src/client/views/ScriptBox.tsx +++ b/src/client/views/ScriptBox.tsx @@ -113,7 +113,7 @@ export class ScriptBox extends React.Component<ScriptBoxProps> { return; } - var div = document.createElement("div"); + const div = document.createElement("div"); div.style.width = "90"; div.style.height = "20"; div.style.background = "gray"; |