From 1fd52e62a0e0cb05758bea8c8ea298b0e7c29fd6 Mon Sep 17 00:00:00 2001
From: Cristian Maglie <c.maglie@arduino.cc>
Date: Tue, 22 Feb 2022 17:39:00 +0100
Subject: [PATCH] Add missing value in 'board list' table

---
 cli/board/list.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cli/board/list.go b/cli/board/list.go
index ffca845e997..eeae355ba7a 100644
--- a/cli/board/list.go
+++ b/cli/board/list.go
@@ -157,7 +157,7 @@ func (dr result) String() string {
 			board := tr("Unknown")
 			fqbn := ""
 			coreName := ""
-			t.AddRow(address, protocol, board, fqbn, coreName)
+			t.AddRow(address, protocol, protocolLabel, board, fqbn, coreName)
 		}
 	}
 	return t.Render()