File tree Expand file tree Collapse file tree
log-viewer/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export class CallStack extends LitElement {
6464 render ( ) {
6565 const stack = DatabaseAccess . instance ( ) ?. getStack ( this . timestamp ) . reverse ( ) ?? [ ] ;
6666 if ( ! stack . length ) {
67- return html ` < div class ="callstack__item "> No call stack available</ div > ` ;
67+ return html `< div class ="callstack__item "> No call stack available</ div > ` ;
6868 }
6969
7070 const details = stack . slice ( this . startDepth , this . endDepth ) . map ( ( entry ) => {
@@ -76,21 +76,19 @@ export class CallStack extends LitElement {
7676 }
7777
7878 const [ first , ...rest ] = details ;
79- return html ` < details >
79+ return html `< details >
8080 < summary > ${ first } </ summary >
8181 < div class ="callstack "> ${ rest } </ div >
8282 </ details > ` ;
8383 }
8484
8585 private lineLink ( line : LogEvent ) {
86- return html `
87- < a
88- @click =${ this . onCallerClick }
89- class ="callstack__item code_text"
90- data-timestamp="${ line . timestamp } "
91- > ${ line . text } </ a
92- >
93- ` ;
86+ return html `< a
87+ @click =${ this . onCallerClick }
88+ class ="callstack__item code_text"
89+ data-timestamp="${ line . timestamp } "
90+ > ${ line . text } </ a
91+ > ` ;
9492 }
9593
9694 private onCallerClick ( evt : Event ) {
You can’t perform that action at this time.
0 commit comments