Skip to content

Commit e3ada75

Browse files
committed
Merge branch 'main' into feat-timeline-high-res-scaling
2 parents 2498fe3 + 9cfbefd commit e3ada75

2 files changed

Lines changed: 17 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Fixed
1717

18-
- Performance regression of Call Tree rendering ([#581][#581])
19-
- Call Tree not correctly keeping position when rows where hidden / shown via Details and Debug Only ([#581][#581])
18+
- Call Tree: Performance regression of Call Tree rendering ([#581][#581])
19+
- Call Tree: Call Tree not correctly keeping position when rows where hidden / shown via Details and Debug Only ([#581][#581])
20+
- Database: Call stack shows items horizontally instead of vertically ([#582][#582])
2021

2122
## [1.16.1] - 2024-12-03
2223

@@ -376,6 +377,7 @@ Skipped due to adopting odd numbering for pre releases and even number for relea
376377

377378
[#504]: https://github.com/certinia/debug-log-analyzer/issues/504
378379
[#581]: https://github.com/certinia/debug-log-analyzer/issues/581
380+
[#582]: https://github.com/certinia/debug-log-analyzer/issues/582
379381
[#588]: https://github.com/certinia/debug-log-analyzer/issues/588
380382

381383
<!-- 1.16.1 -->

log-viewer/modules/components/CallStack.ts

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,28 @@ export class CallStack extends LitElement {
3333
overflow: scroll;
3434
}
3535
36-
.stackEntry {
36+
details summary {
3737
cursor: pointer;
3838
}
3939
40-
.dbLinkContainer {
40+
details summary > * {
41+
display: inline;
42+
}
43+
44+
.callstack {
4145
display: flex;
46+
flex-direction: column;
4247
}
4348
44-
.title {
45-
font-weight: bold;
49+
.callstack__item {
50+
cursor: pointer;
4651
}
4752
48-
.code-text {
53+
.code_text {
4954
font-family: monospace;
5055
font-weight: var(--vscode-font-weight, normal);
5156
font-size: var(--vscode-editor-font-size, 0.9em);
5257
}
53-
54-
details {
55-
display: flex;
56-
}
5758
`,
5859
];
5960

@@ -70,18 +71,18 @@ export class CallStack extends LitElement {
7071

7172
return html` <details>
7273
<summary>${details[0]}</summary>
73-
${details.slice(1, -1)}
74+
<div class="callstack">${details.slice(1, -1)}</div>
7475
</details>`;
7576
} else {
76-
return html` <div class="stackEntry">No call stack available</div>`;
77+
return html` <div class="callstack__item">No call stack available</div>`;
7778
}
7879
}
7980

8081
private lineLink(line: LogLine) {
8182
return html`
8283
<a
8384
@click=${this.onCallerClick}
84-
class="stackEntry code-text"
85+
class="callstack__item code_text"
8586
data-timestamp="${line.timestamp}"
8687
>${line.text}</a
8788
>

0 commit comments

Comments
 (0)