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:
commit
9b684ab9ef
|
@ -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
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue