Skip to content

Commit

Permalink
fix(Path View): 🐛 Truncation (Fix #166)
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed Dec 4, 2021
1 parent 7fd4cc3 commit fb17090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -50616,7 +50616,7 @@ class BCPlugin extends require$$0.Plugin {
: null;
const max_width = elForMaxWidth
? getComputedStyle(elForMaxWidth).getPropertyValue("max-width")
: "100%";
: "80%";
const trailDiv = createDiv({
cls: `BC-trail ${respectReadableLineLength
? "is-readable-line-width markdown-preview-sizer markdown-preview-section"
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ export default class BCPlugin extends Plugin {
: null;
const max_width = elForMaxWidth
? getComputedStyle(elForMaxWidth).getPropertyValue("max-width")
: "100%";
: "80%";

const trailDiv = createDiv({
cls: `BC-trail ${
Expand Down

0 comments on commit fb17090

Please sign in to comment.