Skip to content
This repository was archived by the owner on Jun 26, 2025. It is now read-only.

Commit d3c49ee

Browse files
author
Cristi-007
committed
Fix - custom fields text
1 parent fc6b2fa commit d3c49ee

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

source/main/library/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file updated automatically: changes made here will be overwritten!
22

3-
export const VERSION = "2.28.0";
3+
export const VERSION = "2.28.1";

source/renderer/components/vault/EntryDetails.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,22 @@ const FIELD_TYPE_OPTIONS: Array<{
5353
icon: IconName | MaybeElement;
5454
type: EntryPropertyValueType;
5555
}> = [
56-
{ type: EntryPropertyValueType.Text, i18nKey: "custom-fields.field-type.text", icon: "italic" },
56+
{ type: EntryPropertyValueType.Text,
57+
i18nKey: "vault-ui.custom-fields.field-type.text",
58+
icon: "italic" },
5759
{
5860
type: EntryPropertyValueType.Note,
59-
i18nKey: "custom-fields.field-type.note",
61+
i18nKey: "vault-ui.custom-fields.field-type.note",
6062
icon: "align-left"
6163
},
6264
{
6365
type: EntryPropertyValueType.Password,
64-
i18nKey: "custom-fields.field-type.password",
66+
i18nKey: "vault-ui.custom-fields.field-type.password",
6567
icon: "key"
6668
},
67-
{ type: EntryPropertyValueType.OTP, i18nKey: "custom-fields.field-type.otp", icon: "time" }
69+
{ type: EntryPropertyValueType.OTP,
70+
i18nKey: "vault-ui.custom-fields.field-type.otp",
71+
icon: "time" }
6872
];
6973

7074
function iconName(mimeType) {

0 commit comments

Comments
 (0)