Skip to content

Commit

Permalink
remove version (it's already part of the name)
Browse files Browse the repository at this point in the history
  • Loading branch information
raulb committed Jan 16, 2025
1 parent 41cf9c7 commit 0dc3428
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cmd/conduit/root/connectorplugins/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,13 @@ func displayConnectorPlugins(connectorPlugins []*apiv1.ConnectorPluginSpecificat
Cells: []*simpletable.Cell{
{Align: simpletable.AlignCenter, Text: "NAME"},
{Align: simpletable.AlignCenter, Text: "DESCRIPTION"},
{Align: simpletable.AlignCenter, Text: "VERSION"},
},
}

for _, p := range connectorPlugins {
r := []*simpletable.Cell{
{Align: simpletable.AlignRight, Text: p.Name},
{Align: simpletable.AlignLeft, Text: p.Description},
{Align: simpletable.AlignLeft, Text: p.Version},
}

table.Body.Cells = append(table.Body.Cells, r)
Expand Down

0 comments on commit 0dc3428

Please sign in to comment.