File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
eez-studio-ui/_stylesheets Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 344
344
max-width : calc (100% - 40px );
345
345
pre {
346
346
user-select : text ;
347
- max-height : 800px ;
348
347
overflow-y : auto ;
349
348
padding-right : 10px ;
350
349
}
Original file line number Diff line number Diff line change @@ -274,6 +274,15 @@ export class Connection
274
274
275
275
logAnswer ( data : string ) {
276
276
if ( this . traceEnabled && data . trim ( ) . length > 0 ) {
277
+ if ( this . lastAnswerActivityLogId != undefined ) {
278
+ const activityLog = activityLogStore . findById (
279
+ this . lastAnswerActivityLogId
280
+ ) ;
281
+ if ( ! activityLog || activityLog . deleted ) {
282
+ this . lastAnswerActivityLogId = undefined ;
283
+ }
284
+ }
285
+
277
286
if ( this . lastAnswerActivityLogId != undefined ) {
278
287
this . lastAnswerActivityLogMessage += data ;
279
288
You can’t perform that action at this time.
0 commit comments