Skip to content

Commit

Permalink
Fix issue with init order - close #153
Browse files Browse the repository at this point in the history
  • Loading branch information
s-cork committed Aug 28, 2024
1 parent 2054ea0 commit 9c22ccc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client_code/Tabulator/_module_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ class CustomModule extends Module {
}
}
for (const key in kws) {
this[key] = kws[key];
CustomModule[key] = kws[key];
}
return CustomModule;
"""
_mkJsModule = _Function("Tabulator", "Module", "cls", "name", "kws", _body)
Expand Down

0 comments on commit 9c22ccc

Please sign in to comment.