mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 04:44:23 +08:00
Fix required selector
argument to Component.$()
(#2844)
This commit is contained in:
parent
2cd1c2964a
commit
707889abc8
|
@ -81,7 +81,7 @@ export default abstract class Component<T extends ComponentAttrs = ComponentAttr
|
||||||
* @returns the jQuery object for the DOM node
|
* @returns the jQuery object for the DOM node
|
||||||
* @final
|
* @final
|
||||||
*/
|
*/
|
||||||
protected $(selector: string): JQuery {
|
protected $(selector?: string): JQuery {
|
||||||
const $element = $(this.element) as JQuery<HTMLElement>;
|
const $element = $(this.element) as JQuery<HTMLElement>;
|
||||||
|
|
||||||
return selector ? $element.find(selector) : $element;
|
return selector ? $element.find(selector) : $element;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user