Frontmatter
| id | 6635 |
| title | core.Observable: not removing listeners with "once" properly, for multiple occurences on the same event target |
| state | Closed |
| labels | bug |
| assignees | [] |
| createdAt | Apr 9, 2025, 12:37 AM |
| updatedAt | Apr 9, 2025, 12:38 AM |
| githubUrl | https://github.com/neomjs/neo/issues/6635 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Apr 9, 2025, 12:38 AM |
listeners[name]arraycomponent.Base:
async render(mount) { let me = this, autoMount = mount || me.autoMount, {app} = me, {useVdomWorker} = Neo.config; // Verify that the critical rendering path => CSS files for the new tree is in place if (autoMount && currentWorker.countLoadingThemeFiles !== 0) { currentWorker.on('themeFilesLoaded', function() { !me.mounted && me.render(mount) }, me, {once: true}); return }Especially for form field trigger clicks, which show a picker, it can lead to side effects.