Skip to content

Commit

Permalink
[ACS-6081] cr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-web-ua committed Nov 24, 2023
1 parent 92b3de0 commit 1d74251
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/>

<div matSuffix class="app-suffix-search-icon-wrapper">
<mat-icon class="app-drop-down-icon">arrow_drop_down</mat-icon>
<mat-icon>arrow_drop_down</mat-icon>
</div>

<button mat-icon-button matSuffix class="app-suffix-search-icon-wrapper app-close-button" (click)="exitSearch()">
Expand All @@ -29,7 +29,7 @@
</div>

<mat-menu #searchOptionsMenu="matMenu" [overlapTrigger]="true" class="app-search-options-menu">
<div (keydown.tab)="$event.stopPropagation()" (keydown.shift.tab)="$event.stopPropagation()" tabindex=0 class="test">
<div (keydown.tab)="$event.stopPropagation()" (keydown.shift.tab)="$event.stopPropagation()" tabindex=0>
<div cdkTrapFocus>
<app-search-input-control
#searchInputControl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class DataTable extends Component {
async getLockOwner(itemName: string, location: string = ''): Promise<string> {
if (await this.hasLockOwnerInfo(itemName, location)) {
const row = this.getRowByName(itemName, location);
return row.$(DataTable.selectors.lockOwner).$('.aca-locked_by--name').getText();
return row.$(DataTable.selectors.lockOwner).$('.aca-locked-by--name').getText();
}
return '';
}
Expand Down

0 comments on commit 1d74251

Please sign in to comment.