Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
4e49777
PM-34890 changed to use bit-icons - also set the ariaLabel and text
voommen-livefront Apr 14, 2026
e5ebb3d
PM-34890 used bit-icon
voommen-livefront Apr 15, 2026
0bc644f
PM-34890 tooltip added to reports module
voommen-livefront Apr 15, 2026
3acb262
PM-34890 updated phishing warning component with bit-icon
voommen-livefront Apr 15, 2026
049366a
PM-34890 changed changeDetection and renamed the component to have a …
voommen-livefront Apr 15, 2026
edb1d76
PM-34890 updated review comments
voommen-livefront Apr 15, 2026
073e7aa
PM-34890 updated missing phishing warning story
voommen-livefront Apr 15, 2026
8333937
PM-34890 update observables to signal
voommen-livefront Apr 15, 2026
5b932b0
Merge main
voommen-livefront Apr 16, 2026
158ba3a
PM-34891 use startIcon and endIcon instead of bit-icon in buttons
voommen-livefront Apr 17, 2026
4a96d18
Merge branch 'main' into dirt/pm-34890/update-icon-usage-to-bit-icon
voommen-livefront Apr 20, 2026
2be1ae4
PM-34890 resolved issues with merge conflict
voommen-livefront Apr 20, 2026
e2cd3b2
PM-34890 fixed tests that failed after merge
voommen-livefront Apr 20, 2026
e38fd3f
Merge branch 'dirt/pm-34890/update-icon-usage-to-bit-icon' into dirt/…
voommen-livefront Apr 20, 2026
63974f6
Merge branch 'main' into dirt/pm-34891/use-star-end-icons-in-buttons
voommen-livefront Apr 20, 2026
68a0cc8
Merge branch 'main' into dirt/pm-34890/update-icon-usage-to-bit-icon
voommen-livefront Apr 27, 2026
56666b2
Merge branch 'dirt/pm-34890/update-icon-usage-to-bit-icon' into dirt/…
voommen-livefront Apr 27, 2026
9e405ef
Merge branch 'main' into dirt/pm-34891/use-star-end-icons-in-buttons
voommen-livefront Apr 30, 2026
46ad702
PM-34891 update PR to remove duplicate endIcon and startIcon settings
voommen-livefront Apr 30, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
bitButton
buttonType="secondary"
type="button"
startIcon="bwi-envelope"
[disabled]="!enableRequestPasswordChange()"
[bitTooltip]="!enableRequestPasswordChange() ? ('allTasksAssigned' | i18n) : null"
[addTooltipToDescribedby]="!enableRequestPasswordChange()"
(click)="requestPasswordChange()"
data-testid="assign-tasks-button"
>
<bit-icon class="tw-mr-2" name="bwi-envelope" />
{{ "assignTasks" | i18n }}
</button>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import {
TooltipDirective,
TypographyModule,
ChipFilterComponent,
IconComponent,
ChipFilterOption,
} from "@bitwarden/components";
import { ExportHelper } from "@bitwarden/vault-export-core";
Expand Down Expand Up @@ -76,7 +75,6 @@ export type ApplicationFilterOption =
ButtonModule,
ReactiveFormsModule,
ChipFilterComponent,
IconComponent,
TooltipDirective,
],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@
[placeholder]="'searchMembers' | i18n"
class="tw-grow"
></bit-search>
<button type="button" bitButton buttonType="primary" [bitAction]="exportReportAction">
<span>{{ "exportVerb" | i18n }}</span>
<bit-icon name="bwi-import" class="bwi-fw" aria-hidden="true"></bit-icon>
<button
type="button"
bitButton
buttonType="primary"
endIcon="bwi-import"
[bitAction]="exportReportAction"
>
{{ "exportVerb" | i18n }}
</button>
}
</app-header>
Expand Down
Loading