diff --git a/apps/mobile/app/components/dialogs/vault/index.js b/apps/mobile/app/components/dialogs/vault/index.js index 64d408501..562918a68 100644 --- a/apps/mobile/app/components/dialogs/vault/index.js +++ b/apps/mobile/app/components/dialogs/vault/index.js @@ -297,6 +297,8 @@ export class VaultDialog extends Component { type: "error", context: "local" }); + } else { + ToastManager.error(e); } }); } else if (this.state.locked) { diff --git a/apps/mobile/app/components/properties/index.js b/apps/mobile/app/components/properties/index.js index e8efbcaa8..4f7c32b21 100644 --- a/apps/mobile/app/components/properties/index.js +++ b/apps/mobile/app/components/properties/index.js @@ -23,7 +23,6 @@ import { FlatList } from "react-native-actions-sheet"; import { db } from "../../common/database"; import { DDS } from "../../services/device-detection"; import { presentSheet } from "../../services/event-manager"; -import SearchService from "../../services/search"; import { ColorValues } from "../../utils/colors"; import { SIZE } from "../../utils/size"; import SheetProvider from "../sheet-provider"; @@ -93,6 +92,10 @@ export const Properties = ({ close = () => {}, item, buttons = [] }) => { {item.title} + {item.type === "notebook" && item.description ? ( + {item.description} + ) : null} + {item.type === "note" ? ( ) : null} diff --git a/apps/mobile/e2e/tests/__image_snapshots__/__diff_output__/vault-e-2-e-js-vault-add-a-note-to-vault-1-snap-diff.png b/apps/mobile/e2e/tests/__image_snapshots__/__diff_output__/vault-e-2-e-js-vault-add-a-note-to-vault-1-snap-diff.png new file mode 100644 index 000000000..d09991b33 Binary files /dev/null and b/apps/mobile/e2e/tests/__image_snapshots__/__diff_output__/vault-e-2-e-js-vault-add-a-note-to-vault-1-snap-diff.png differ