1
0
mirror of https://github.com/flarum/core.git synced 2025-07-17 14:51:19 +02:00

Fix required selector argument to Component.$() (#2844)

This commit is contained in:
David Wheatley
2021-05-09 22:22:22 +01:00
committed by GitHub
parent 503c3fe640
commit 1d0d1c825a

View File

@@ -81,7 +81,7 @@ export default abstract class Component<T extends ComponentAttrs = ComponentAttr
* @returns the jQuery object for the DOM node
* @final
*/
protected $(selector: string): JQuery {
protected $(selector?: string): JQuery {
const $element = $(this.element) as JQuery<HTMLElement>;
return selector ? $element.find(selector) : $element;