1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 10:54:00 +00:00

[PM-31584] Minor UI fixes (#18736)

This commit is contained in:
Vijay Oommen
2026-02-04 09:11:06 -06:00
committed by jaasen-livefront
parent 9381929445
commit a3ced374da
2 changed files with 5 additions and 4 deletions

View File

@@ -3,12 +3,10 @@
} @else {
@let drawerDetails = dataService.drawerDetails$ | async;
<div class="tw-mt-4 tw-flex tw-flex-col">
<h2 class="tw-mb-6" bitTypography="h2">{{ "allApplications" | i18n }}</h2>
<div class="tw-flex tw-mb-4 tw-gap-4 tw-items-center">
<bit-search
[placeholder]="'searchApps' | i18n"
class="tw-w-1/2"
class="tw-min-w-96"
[formControl]="searchControl"
></bit-search>
@@ -20,7 +18,8 @@
(ngModelChange)="setFilterApplicationsByStatus($event)"
fullWidth="false"
class="tw-min-w-48"
></bit-chip-select>
>
</bit-chip-select>
<button
type="button"

View File

@@ -96,10 +96,12 @@ export class ApplicationsComponent implements OnInit {
{
label: this.i18nService.t("critical", this.criticalApplicationsCount()),
value: ApplicationFilterOption.Critical,
icon: " ",
},
{
label: this.i18nService.t("notCritical", this.nonCriticalApplicationsCount()),
value: ApplicationFilterOption.NonCritical,
icon: " ",
},
]);