We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ef91b commit a6b08c3Copy full SHA for a6b08c3
packages/hub/cli.ts
@@ -75,7 +75,7 @@ class UploadProgressManager {
75
76
if (!bar) {
77
bar = this.multibar.create(100, 0, {
78
- filename: this.truncateFilename(path, 25),
+ filename: this.truncateFilename(path, 100),
79
state: state,
80
});
81
this.fileBars.set(path, bar);
@@ -92,7 +92,7 @@ class UploadProgressManager {
92
} else {
93
// Fall back to simple console logging
94
const percentage = Math.round(progress * 100);
95
- const truncatedPath = this.truncateFilename(path, 50);
+ const truncatedPath = this.truncateFilename(path, 100);
96
97
if (progress >= 1) {
98
const statusIcon = state === "hashing" ? "✓ hashed" : "✓ uploaded";
0 commit comments