Skip to content

Commit

Permalink
Revert #5305
Browse files Browse the repository at this point in the history
As it doesn't fix the issue in all cases.
  • Loading branch information
sidharthv96 committed Aug 20, 2024
1 parent d5432ce commit 4e7d650
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { line, select } from 'd3';
import { layout as dagreLayout } from 'dagre-d3-es/src/dagre/index.js';
import * as graphlib from 'dagre-d3-es/src/graphlib/index.js';
import { getConfig } from '../../diagram-api/diagramAPI.js';
import { log } from '../../logger.js';
import { configureSvgSize } from '../../setupGraphViewbox.js';
import common from '../common/common.js';
import markers from './requirementMarkers.js';
import { getConfig } from '../../diagram-api/diagramAPI.js';

let conf = {};
let relCnt = 0;
Expand Down Expand Up @@ -86,7 +86,7 @@ const newBodyNode = (parentNode, id, txts, yStart) => {
// );

let currentRow = 0;
const charLimit = 24;
const charLimit = 30;
let wrappedTxts = [];
txts.forEach((textStr) => {
let currentTextLen = textStr.length;
Expand Down

0 comments on commit 4e7d650

Please sign in to comment.