Skip to content

Commit 6d7c16d

Browse files
committed
lowercase labels as is standard in apollo-tooling (i think)
1 parent 5cce317 commit 6d7c16d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/apollo/src/commands/service

packages/apollo/src/commands/service/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ function formatHumanReadable({
7070
.filter(Boolean),
7171
{
7272
columns: [
73-
{ key: "name", label: "Name" },
73+
{ key: "name", label: "name" },
7474
{ key: "url", label: "URL" },
75-
{ key: "updatedAt", label: "Last Updated At" }
75+
{ key: "updatedAt", label: "last updated" }
7676
],
7777
// The default `printLine` will output to the console; we want to capture the output so we can test
7878
// it.

0 commit comments

Comments
 (0)