refactor: temporarily remove bitwise operations
This commit is contained in:
parent
635285b8d0
commit
3c0f9b31c6
9 changed files with 192 additions and 184 deletions
|
|
@ -169,7 +169,7 @@ export class UI<T extends Type, K extends Renderer | null = null> extends Class
|
|||
|
||||
if (this.controls.size) {
|
||||
obj.controls = []
|
||||
this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] }))
|
||||
this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: FormatProperties(e[1]) }))
|
||||
}
|
||||
|
||||
return obj
|
||||
|
|
|
|||
Reference in a new issue