Skip to content

Commit

Permalink
fix: prettifier table rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
0x3bfc committed Sep 12, 2022
1 parent 7ac6b0e commit 6d35176
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/prettifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ export class Prettify {
} else {
const p = new Table({
columns: [
{ name: "contract", alignment: "left" },
{ name: "state_variable", alignment: "left" },
{ name: "contract", alignment: "center" },
{ name: "state_variable", alignment: "center" },
{ name: "storage_slot", alignment: "center" },
{ name: "offset", alignment: "center" },
{ name: "type", alignment: "left" },
{ name: "type", alignment: "center" },
{ name: "idx", alignment: "center" },
{ name: "artifact", alignment: "left" },
{ name: "number_of_bytes", alignment: "center" }
{ name: "artifact", alignment: "center" },
{ name: "numberOfBytes", alignment: "center" }
]
});

Expand Down

0 comments on commit 6d35176

Please sign in to comment.