ispbills-icli 8.6.5 → 8.6.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ispbills-icli",
3
- "version": "8.6.5",
3
+ "version": "8.6.6",
4
4
  "description": "iCli — IspBills AI network engineer in your terminal",
5
5
  "keywords": [
6
6
  "ispbills",
package/src/tui/app.js CHANGED
@@ -1822,7 +1822,7 @@ export function App({ cfg, display = {}, onExternal, onExit, initialQuestion, sh
1822
1822
  <${Box} flexDirection="column" width=${cols}>
1823
1823
  <${Static} key=${clearEpoch} items=${staticItems}>
1824
1824
  ${(it) => it.type === 'banner'
1825
- ? html`<${Box} key=${it.id} flexDirection="column" alignItems="center">
1825
+ ? html`<${Box} key=${it.id} flexDirection="column" alignItems="center" width=${cols}>
1826
1826
  <${Banner} cfg=${cfg} model=${model} width=${cols} compact=${compact} streamerMode=${streamerMode} />
1827
1827
  <//>`
1828
1828
  : renderItem(it)}
@@ -187,9 +187,9 @@ export function Banner({ cfg = {}, model, width = 80, compact = false, streamerM
187
187
  }
188
188
 
189
189
  return html`
190
- <${Box} flexDirection="column" marginBottom=${1} alignItems="center">
190
+ <${Box} flexDirection="column" marginBottom=${1} alignItems="center" width=${width}>
191
191
  ${wide
192
- ? html`<${Box} flexDirection="column" alignItems="center">
192
+ ? html`<${Box} flexDirection="column" alignItems="center" width=${width}>
193
193
  ${LOGO.map((l, i) => html`<${Text} key=${'l' + i} color=${C.accent} bold>${l}<//>`)}
194
194
  <${Text} color=${C.muted}>iCopilot ${dash()} IspBills network engineer in your terminal<//>
195
195
  <//>`