1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

[PM-22284] - [Defect] Inconsistent UI issues with Send page empty state (#15877)

* update new send dropdown to match comps

* revert change to no send icon.
This commit is contained in:
Jordan Aasen
2025-09-08 13:04:50 -07:00
committed by GitHub
parent 62aad469b9
commit c017e3c676
3 changed files with 11 additions and 9 deletions

View File

@@ -22,7 +22,9 @@
>
<bit-no-items [icon]="noItemIcon" class="tw-text-main">
<ng-container slot="title">{{ "sendsTitleNoItems" | i18n }}</ng-container>
<ng-container slot="description">{{ "sendsBodyNoItems" | i18n }}</ng-container>
<ng-container slot="description">
<p bitTypography="body2" class="tw-mx-6 tw-mt-2">{{ "sendsBodyNoItems" | i18n }}</p>
</ng-container>
<tools-new-send-dropdown
[hideIcon]="true"
*ngIf="!sendsDisabled"

View File

@@ -10,7 +10,12 @@ import { PolicyType } from "@bitwarden/common/admin-console/enums";
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { SendType } from "@bitwarden/common/tools/send/enums/send-type";
import { ButtonModule, CalloutModule, NoItemsModule } from "@bitwarden/components";
import {
ButtonModule,
CalloutModule,
NoItemsModule,
TypographyModule,
} from "@bitwarden/components";
import {
NewSendDropdownComponent,
SendItemsService,
@@ -48,6 +53,7 @@ export enum SendState {
SendListItemsContainerComponent,
SendListFiltersComponent,
SendSearchComponent,
TypographyModule,
],
})
export class SendV2Component implements OnDestroy {