aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandre.schmid <andre.schmid@est.tech>2022-03-11 16:46:12 +0000
committerMichael Morris <michael.morris@est.tech>2022-03-11 18:25:02 +0000
commit0d9cc11b4daf60efbe4b7cebbbc6589200cddd53 (patch)
tree511fd4f20bbd0c7ec41d44a52e07bf8bbe639375
parente5488e5e3623646125802b8ab7e12b7159a2c0d3 (diff)
Fix mouse in/out exceptions in node palette
The event handling methods were removed in Change-Id: Ib45b4a1b650a7d5959e4a6ff70d46d6dee0586c2, but were still being referenced in the palette html. Change-Id: I17d48dfee9f35728b02b53db784ced20b2294845 Issue-ID: SDC-3907 Signed-off-by: andre.schmid <andre.schmid@est.tech>
-rw-r--r--catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html b/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html
index 7963dd18b7..89a12d01d4 100644
--- a/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html
+++ b/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html
@@ -18,8 +18,6 @@
(dndStart)="onDragStart($event, paletteElement)"
(drag)="onDraggableMoved($event)"
[dndEffectAllowed]="'copyMove'"
- (mouseenter)="onMouseOver($event, paletteElement)"
- (mouseleave)="onMouseOut(paletteElement)"
[attr.data-tests-id]="paletteElement.name">
<palette-element [paletteElement]="paletteElement"></palette-element>
</div>