diff --git a/packages/hoppscotch-common/locales/en.json b/packages/hoppscotch-common/locales/en.json index 399ae8d4..b8f430a5 100644 --- a/packages/hoppscotch-common/locales/en.json +++ b/packages/hoppscotch-common/locales/en.json @@ -1132,6 +1132,7 @@ "create_new": "Create new workspace", "deleted": "Workspace deleted", "delete_all_activity_logs": "Delete all activity logs", + "successfully_deleted_all_activity_logs": "Successfully deleted all activity logs", "delete_activity_log": "Delete activity log", "deleted_activity_log": "Deleted selected activity log", "deleted_all_activity_logs": "Deleted all activity logs", diff --git a/packages/hoppscotch-common/src/components/history/Personal.vue b/packages/hoppscotch-common/src/components/history/Personal.vue index ff2187bf..551e9689 100644 --- a/packages/hoppscotch-common/src/components/history/Personal.vue +++ b/packages/hoppscotch-common/src/components/history/Personal.vue @@ -50,7 +50,11 @@ -
+
+ ( [] ) +const { isHistoryStoreEnabled, isFetchingHistoryStoreStatus } = + "requestHistoryStore" in platform.sync.history && + platform.sync.history.requestHistoryStore + ? platform.sync.history.requestHistoryStore + : { + isHistoryStoreEnabled: ref(true), + isFetchingHistoryStoreStatus: ref(false), + } + const deepCheckForRegex = (value: unknown, regExp: RegExp): boolean => { if (value === null || value === undefined) return false