From 79fa7352c6d333b92e445817e26f1a20df4eb168 Mon Sep 17 00:00:00 2001 From: Saqib Ansari Date: Tue, 26 Nov 2024 21:55:06 +0530 Subject: [PATCH] chore: improve message --- frontend/src2/query/components/QueryInfo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src2/query/components/QueryInfo.vue b/frontend/src2/query/components/QueryInfo.vue index 3fa59bb8..e281f35a 100644 --- a/frontend/src2/query/components/QueryInfo.vue +++ b/frontend/src2/query/components/QueryInfo.vue @@ -8,8 +8,8 @@ const query = inject('query') as Query function toggleLiveConnection(enable: boolean) { const title = enable ? 'Enable Data Store' : 'Disable Data Store' const message = enable - ? 'Enabling the data store will make your queries faster by using stored data. However, this data may not be the most current, as it is updated once every 24 hours.' - : 'Disabling the data store will ensure you are always using the most up-to-date data, but your queries may take longer to run.' + ? 'Enabling data store use the cached table data for faster queries, but may not be up-to-date. It will also allow you to combine data from multiple sources. Cached data is updated every day.' + : 'Disabling data store will use the live connection to the database for queries. This will ensure that you are always querying the most up-to-date data but may be slower.' confirmDialog({ title,