Skip to content

Commit

Permalink
Merge branch 'main' into fix/fix_voltron_http_dio_null
Browse files Browse the repository at this point in the history
  • Loading branch information
open-hippy authored Jul 24, 2024
2 parents c0f936d + 585f461 commit e3e16df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1133,8 +1133,8 @@ export class HippyElement extends HippyNode {
delete attributes.value;

Object.keys(attributes).forEach((key) => {
if (key.toLowerCase().includes('color')) {
// color value may big int that iOS do not support, should delete
if (key !== 'id' && key !== 'hippyNodeId' && key !== 'class') {
// value may big int that iOS do not support, should delete
delete attributes[key];
}
});
Expand Down

0 comments on commit e3e16df

Please sign in to comment.