@flow-os/client 0.0.47-dev.1772043907 → 0.0.47-dev.1772043976

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli/dev.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flow-os/client",
3
- "version": "0.0.47-dev.1772043907",
3
+ "version": "0.0.47-dev.1772043976",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cli/dev.ts CHANGED
@@ -164,7 +164,7 @@ export async function dev() {
164
164
  const innerLen = strip(inner).length;
165
165
  const half = Math.max(0, Math.floor((innerW - innerLen) / 2));
166
166
  const rest = innerW - half - innerLen;
167
- const top = U + '╭' + '─'.repeat(half) + inner + '─'.repeat(rest) + '╮' + R;
167
+ const top = U + '╭' + '─'.repeat(half) + inner + U + '─'.repeat(rest) + '╮' + R;
168
168
  const bottom = U + '╰' + '─'.repeat(innerW) + '╯' + R;
169
169
  const emptyLine = U + '│' + R + ' '.repeat(PAD_LEFT) + ' '.repeat(innerW - PAD_LEFT) + U + '│' + R;
170
170
  const localContent = iconLocal + ' Local: ' + U + local + R;