Skip to content

Commit

Permalink
web: fix class feature type (#2331)
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss authored Aug 26, 2024
1 parent a380609 commit b4f60ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/explorer/src/utils/rdocParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,8 @@ function getFeatureName(feature) {
return formatBytes(feature.bytes);
case "operand offset":
return `operand[${feature.index}].offset: 0x${feature.operand_offset.toString(16).toUpperCase()}`;
case "class":
return `${feature.class_}`;
default:
return `${feature[feature.type]}`;
}
Expand Down

0 comments on commit b4f60ec

Please sign in to comment.