Merge branch 'ent-7568-11898-Problemas-de-configuración-consolas-visuales' into 'develop'

Ent 7568 11898 problemas de configuración consolas visuales

See merge request artica/pandorafms!4278
This commit is contained in:
Daniel Rodriguez 2021-08-11 08:33:24 +00:00
commit 9b684ab9ef
4 changed files with 9 additions and 4 deletions

View File

@ -134,8 +134,7 @@ final class EventsHistory extends Item
}
}
$data['height'] = ($data['height'] - 20);
// $data['height'] = ($data['height'] - 20);
if ((int) $data['width'] < 11) {
$data['width'] = 11;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -339,6 +339,10 @@ export default class Line extends Item<LineProps> {
}
protected updateDomElement(element: HTMLElement): void {
if (element.parentElement != null) {
element.parentElement.style.cursor = "default";
}
let {
x, // Box x
y, // Box y
@ -419,6 +423,7 @@ export default class Line extends Item<LineProps> {
startCircle.style.position = "absolute";
startCircle.style.left = `${x1 - this.circleRadius}px`;
startCircle.style.top = `${y1 - this.circleRadius}px`;
startCircle.style.cursor = `move`;
endCircle.classList.add(
"visual-console-item-line-circle",
@ -431,6 +436,7 @@ export default class Line extends Item<LineProps> {
endCircle.style.position = "absolute";
endCircle.style.left = `${x2 - this.circleRadius}px`;
endCircle.style.top = `${y2 - this.circleRadius}px`;
endCircle.style.cursor = `move`;
if (element.parentElement !== null) {
const circles = element.parentElement.getElementsByClassName(