diff --git a/src/platform/web/ui/general/utils.ts b/src/platform/web/ui/general/utils.ts index a3d6e7ac..83d02f4c 100644 --- a/src/platform/web/ui/general/utils.ts +++ b/src/platform/web/ui/general/utils.ts @@ -17,7 +17,7 @@ limitations under the License. import {UIView, IMountArgs} from "./types"; import {tag} from "./html"; -export function mountView(view: UIView, mountArgs: IMountArgs): HTMLElement { +export function mountView(view: UIView, mountArgs?: IMountArgs): HTMLElement { let node; try { node = view.mount(mountArgs);