diff --git a/.changeset/serious-seas-notice.md b/.changeset/serious-seas-notice.md new file mode 100644 index 00000000..3de106db --- /dev/null +++ b/.changeset/serious-seas-notice.md @@ -0,0 +1,5 @@ +--- +"@plutolang/cli": patch +--- + +chore(cli): update table alignment in deploy command diff --git a/apps/cli/src/commands/deploy.ts b/apps/cli/src/commands/deploy.ts index b711804e..3f8e1a38 100644 --- a/apps/cli/src/commands/deploy.ts +++ b/apps/cli/src/commands/deploy.ts @@ -200,7 +200,7 @@ async function confirmArch(archRef: arch.Architecture, confirmed: boolean): Prom const resource = archRef.resources[i]; const row: any[] = [resource.id, resource.name, resource.type]; if (i == 0) { - row.push({ content: "Resource", rowSpan: archRef.resources.length }); + row.push({ content: "Resource", rowSpan: archRef.resources.length, vAlign: "center" }); } resourceTable.push(row); } @@ -208,7 +208,7 @@ async function confirmArch(archRef: arch.Architecture, confirmed: boolean): Prom const closure = archRef.closures[i]; const row: any[] = [closure.id, "-", "-"]; if (i == 0) { - row.push({ content: "Closure", rowSpan: archRef.closures.length }); + row.push({ content: "Closure", rowSpan: archRef.closures.length, vAlign: "center" }); } resourceTable.push(row); }