Explorar o código

limit max text shown in paste warning

Eugene Pankov %!s(int64=3) %!d(string=hai) anos
pai
achega
53f3962640
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tabby-terminal/src/api/baseTerminalTab.component.ts

+ 1 - 1
tabby-terminal/src/api/baseTerminalTab.component.ts

@@ -462,7 +462,7 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
                 const result = (await this.platform.showMessageBox(
                     {
                         type: 'warning',
-                        detail: data,
+                        detail: data.slice(0, 1000),
                         message: this.translate.instant('Paste multiple lines?'),
                         buttons,
                         defaultId: 0,