Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vscode-mssql bugs fixes for table #17225

Merged
merged 4 commits into from
Feb 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/views/htmlcontent/src/js/components/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ const template = `
(click)="toggleResultsPane()"
(keydown)="handleResultsKeydown($event)"
[attr.aria-label]="Constants.resultPaneLabel"
[attr.aria-expanded]="!resultActive">
[attr.aria-expanded]="resultActive">
<span> {{Constants.resultPaneLabel}} </span>
<span class="shortCut"> {{resultShortcut}} </span>
</div>
<div id="results" tabIndex="0" *ngIf="renderedDataSets.length > 0" class="results vertBox scrollable"
<div id="results" *ngIf="renderedDataSets.length > 0" class="results vertBox scrollable"
(onScroll)="onScroll($event)"
[scrollEnabled]="scrollEnabled"
[class.hidden]="!resultActive">
<div class="boxRow content horzBox slickgrid" *ngFor="let dataSet of renderedDataSets; let i = index"
[style.max-height]="renderedDataSets.length > 1 ? dataSet.maxHeight + 'px' : 'inherit'"
[style.min-height]="renderedDataSets.length > 1 ? dataSet.minHeight + 'px' : 'inherit'"
[style.font-size]="resultsFontSize + 'px'">
<slick-grid tabindex="0" #slickgrid id="slickgrid_{{i}}" [columnDefinitions]="dataSet.columnDefinitions"
<slick-grid #slickgrid id="slickgrid_{{i}}" [columnDefinitions]="dataSet.columnDefinitions"
[ngClass]="i === activeGrid ? 'active' : ''"
[dataRows]="dataSet.dataRows"
(contextMenu)="openContextMenu($event, dataSet.batchId, dataSet.resultId, i)"
Expand All @@ -85,10 +85,10 @@ const template = `
</div>
<context-menu #contextmenu (clickEvent)="handleContextClick($event)"></context-menu>
<msg-context-menu #messagescontextmenu (clickEvent)="handleMessagesContextClick($event)"></msg-context-menu>
<div id="messagepane" role="button" tabIndex="1" class="boxRow header collapsible"
<div id="messagepane" role="button" tabIndex="0" class="boxRow header collapsible"
[class.collapsed]="!messageActive"
[attr.aria-label]="Constants.messagePaneLabel"
[attr.aria-expanded]="!messageActive"
[attr.aria-expanded]="messageActive"
(click)="toggleMessagesPane()"
(keydown)="handleMessagesKeydown($event)"
style="position: relative">
Expand Down