1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

[PM-105] Premium Badge Send File (#6684)

* adding the premium badge for the send item file option

* Removing the unnecessary margin after seeing design spec
This commit is contained in:
ttalty
2023-10-31 13:52:24 -04:00
committed by GitHub
parent 77ee09540e
commit 43edc1a893
2 changed files with 10 additions and 3 deletions

View File

@@ -118,8 +118,8 @@ export class AddEditComponent implements OnInit, OnDestroy {
protected formBuilder: FormBuilder
) {
this.typeOptions = [
{ name: i18nService.t("sendTypeFile"), value: SendType.File },
{ name: i18nService.t("sendTypeText"), value: SendType.Text },
{ name: i18nService.t("sendTypeFile"), value: SendType.File, premium: true },
{ name: i18nService.t("sendTypeText"), value: SendType.Text, premium: false },
];
this.sendLinkBaseUrl = this.environmentService.getSendUrl();
}