Skip to content

Commit

Permalink
Back to const
Browse files Browse the repository at this point in the history
  • Loading branch information
cyx committed Jan 28, 2021
1 parent 44ea453 commit 741a019
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/display/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"gopkg.in/yaml.v2"
)

var (
const (
notApplicable = "N/A"
)

Expand Down Expand Up @@ -79,7 +79,7 @@ func (v *logView) AsTableRow() []string {

clientName := v.GetClientName()
if clientName == "" {
clientName = notApplicable
clientName = ansi.Faint(notApplicable)
}

conn := v.getConnection()
Expand Down

0 comments on commit 741a019

Please sign in to comment.