diff options
author | bobzel <zzzman@gmail.com> | 2025-06-26 16:41:01 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-26 16:41:01 -0400 |
commit | 2d70a3bc17fe94d0bf92d8362b8fda8a2e4a82e1 (patch) | |
tree | a9b733e4318f18890459a10ad50d393abf76f6e1 /src/client/views/ScriptBox.tsx | |
parent | 0093370a04348ef38b91252d02ab850f25d753b2 (diff) |
fixed rendering pdfs, text selections on pdfs,
Diffstat (limited to 'src/client/views/ScriptBox.tsx')
-rw-r--r-- | src/client/views/ScriptBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/ScriptBox.tsx b/src/client/views/ScriptBox.tsx index 52c0227d8..c2fbef5a5 100644 --- a/src/client/views/ScriptBox.tsx +++ b/src/client/views/ScriptBox.tsx @@ -131,8 +131,8 @@ export class ScriptBox extends React.Component<ScriptBoxProps> { } const div = document.createElement('div'); - div.style.width = '90'; - div.style.height = '20'; + div.style.width = '90px'; + div.style.height = '20px'; div.style.background = 'gray'; div.style.position = 'absolute'; div.style.display = 'inline-block'; |