Skip to content

Commit

Permalink
Merge pull request #410 from lukecotter/feat-wrap-text-analysis-table
Browse files Browse the repository at this point in the history
feat: event text on analysis view will be wrapped instead of truncating
  • Loading branch information
lcottercertinia authored Oct 19, 2023
2 parents 75ab1e3 + 9a02d81 commit 80f6005
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Show the detail panel by default, including call stack and SOQL issues.
- Database, Call Tree and Analysis View ([#279][#279])
- New sort icon (up and down arrow) when a column is in an unsorted state
- Analysis View ([#279][#279])
- Show full event text instead of truncating
- Show skeleton loading UIs / UI Outlines when waiting for the log to be processed e.g when running `Log: Retrieve Apex Log And Show Analysis` and `Log: Show Apex Log Analysis` ([#252][#252])
- This could be waiting for the log to download from the org or to be parsed and processed.
- What's new notification to open the change log on upgrades ([#210][#210])
Expand Down
2 changes: 1 addition & 1 deletion log-viewer/modules/analysis-view/AnalysisView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ async function renderAnalysis(rootMethod: RootNode) {
{
title: 'Name',
field: 'name',
formatter: 'textarea',
headerSortStartingDir: 'asc',
sorter: 'string',
tooltip: true,
cssClass: 'datagrid-code-text',
bottomCalc: () => {
return 'Total';
Expand Down
1 change: 0 additions & 1 deletion log-viewer/modules/database-view/DatabaseView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ function renderDMLTable(dmlTableContainer: HTMLElement, dmlLines: DMLBeginLine[]
title: 'DML',
field: 'dml',
sorter: 'string',
tooltip: true,
bottomCalc: () => {
return 'Total';
},
Expand Down

0 comments on commit 80f6005

Please sign in to comment.