Skip to content

Commit

Permalink
work for #4780 : lazy-loading
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Oct 7, 2022
1 parent c6afaa1 commit 7da4564
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dropdownListModel.ts
Expand Up @@ -2,7 +2,7 @@ import { Action, IAction } from "./actions/action";
import { Base, ComputedUpdater } from "./base";
import { ItemValue } from "./itemvalue";
import { property } from "./jsonobject";
import { defaultListCss, ListModel } from "./list";
import { ListModel } from "./list";
import { PopupModel } from "./popup";
import { Question } from "./question";
import { doKey2ClickBlur, doKey2ClickUp } from "./utils/utils";
Expand Down
3 changes: 1 addition & 2 deletions src/vue/components/list/list.vue
Expand Up @@ -70,8 +70,7 @@ export class List extends BaseVue {
mouseMove(event: any) {
this.model.onMouseMove(event);
}
mounted() {
super.mounted();
protected onMounted() {
const listContainerElement: any = this.$refs["listContainerElement"];
this.model.initListContainerHtmlElement(listContainerElement);
}
Expand Down

0 comments on commit 7da4564

Please sign in to comment.