We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f59f41 commit c321877Copy full SHA for c321877
src/packages/core/components/split-panel/split-panel.element.ts
@@ -240,6 +240,7 @@ export class UmbSplitPanelElement extends LitElement {
240
}
241
242
if (event.key === 'Home' || event.key === 'End') {
243
+ event.preventDefault();
244
const { width } = this.mainElement.getBoundingClientRect();
245
const newPos = event.key === 'Home' ? 0 : width;
246
this.#setPosition(newPos);
0 commit comments