Skip to content

Commit

Permalink
ux: remove desc from project list (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxck authored Mar 18, 2024
1 parent 9877bd2 commit 879dada
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/uxHelpers/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,13 @@ func PrintProjectList(

func createProjectTableRows(projects []entity.Project) (*uxBlock.TableRow, *uxBlock.TableBody) {
// TODO - janhajek translation
header := (&uxBlock.TableRow{}).AddStringCells("ID", "Name", "Description", "Org Name", "Org ID", "Status")
header := (&uxBlock.TableRow{}).AddStringCells("ID", "Name", "Org Name", "Org ID", "Status")

tableBody := &uxBlock.TableBody{}
for _, project := range projects {
tableBody.AddStringsRow(
string(project.ID),
project.Name.String(),
project.Description.Native(),
project.OrgName.Native(),
project.OrgId.Native(),
project.Status.String(),
Expand Down

0 comments on commit 879dada

Please sign in to comment.