Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cmd/snapshotcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ func handleSnapshotList(ctx context.Context, cmd *cli.Command) error {
name = "-"
}
table.AddRow(
TruncateID(snapshot.ID),
snapshot.ID,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ID column still ellipsized

Medium Severity

The list table now passes the full snapshot.ID, but TruncOrder still treats column 0 as the first column to shrink when the table is wider than the terminal. Render can then ellipsize the ID to a few characters, so copy-paste from the table may still fail for snapshot get / restore on typical narrow widths.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 6edb87a. Configure here.

name,
string(snapshot.Kind),
snapshot.SourceInstanceName,
Expand Down
Loading