From 7677004654863cbff18a6ad9b868b27aaf8aff28 Mon Sep 17 00:00:00 2001 From: zhanghongchuan33 Date: Fri, 13 May 2022 15:41:14 +0800 Subject: [PATCH] fix phone recover tips Signed-off-by: zhanghongchuan33 --- common/component/src/main/ets/components/NoteListComp.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/component/src/main/ets/components/NoteListComp.ets b/common/component/src/main/ets/components/NoteListComp.ets index 3831da2..a888b0d 100644 --- a/common/component/src/main/ets/components/NoteListComp.ets +++ b/common/component/src/main/ets/components/NoteListComp.ets @@ -889,7 +889,7 @@ export struct OperateNoteCompForPortrait { this.CheckedNoteArray.forEach((noteItem) => { noteItem.is_deleted = Delete.No noteItem.deleted_time = 0 - prompt.showToast({ message: $r('app.string.restore').toString(), duration: 2000 }) + prompt.showToast({ message: $r('app.string.restore'), duration: 2000 }) // update note to db let predicates_note = RdbStoreUtil.getRdbPredicates(TableName.NoteTable) predicates_note.equalTo(NoteTableColumn.Uuid, noteItem.uuid)