Skip to content

Commit aa7a036

Browse files
authored
Merge pull request #374 from UiPath/fix/grid-header-cursor-arrow
fix(grid): use arrow cursor on column header
2 parents 33a1abf + d1d857a commit aa7a036

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v14.8.7 (2023-07-20)
2+
* **grid** arrow cursor on grid header text
3+
14
# v14.8.6 (2023-07-19)
25
* **a11y** certain aria roles must contain particular children in grid
36
* **deps-dev** bump word-wrap from 1.2.3 to 1.2.4

projects/angular/components/ui-grid/src/ui-grid.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@
164164
[matTooltip]="column.title + (focusedColumnHeader ? ('\n' + column.description) : '')"
165165
[matTooltipDisabled]="resizeManager.isResizing"
166166
[attr.aria-label]="column.title + (column.description ? ('. ' + column.description) : '') + (column.sortable && intl.sortableMessage ? '. ' + intl.sortableMessage : '')"
167-
matTooltipClass="preserve-whitespace">
167+
matTooltipClass="preserve-whitespace"
168+
class="ui-grid-header-text">
168169
{{ column.title }}
169170
</p>
170171

projects/angular/components/ui-grid/src/ui-grid.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,10 @@ ui-grid {
373373
p {
374374
@extend %ellipse;
375375
}
376+
377+
.ui-grid-header-text {
378+
cursor: default;
379+
}
376380
}
377381

378382
.ui-grid-cell-content {

0 commit comments

Comments
 (0)