Remove vertical line

pull/5515/head
nikitosing 3 years ago
parent dd4146ef76
commit b36b493920
  1. 2
      apps/block_scout_web/assets/js/view_specific/address_contract/code_highlighting.js

@ -13,7 +13,7 @@ const editor = ace.edit('code_viewer_main')
editor.session.setMode(new Mode()) editor.session.setMode(new Mode())
editor.setTheme('ace/theme/chrome') editor.setTheme('ace/theme/chrome')
editor.setValue(code, -1) editor.setValue(code, -1)
editor.setOptions({ maxLines: 40, readOnly: true }) editor.setOptions({ maxLines: 40, readOnly: true, printMargin: false })
const len = codeMain.data('additional-sources-length') const len = codeMain.data('additional-sources-length')
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {

Loading…
Cancel
Save