mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
fix: Fix typo in conversationStats/get (#11201)
This commit is contained in:
@@ -29,8 +29,8 @@ const debouncedFetchMetaData = debounce(fetchMetaData, 500, false, 1000);
|
||||
const longDebouncedFetchMetaData = debounce(fetchMetaData, 500, false, 5000);
|
||||
|
||||
export const actions = {
|
||||
get: async ({ commit, store: $store }, params) => {
|
||||
if ($store.allCount > 100) {
|
||||
get: async ({ commit, state: $state }, params) => {
|
||||
if ($state.allCount > 100) {
|
||||
longDebouncedFetchMetaData(commit, params);
|
||||
} else {
|
||||
debouncedFetchMetaData(commit, params);
|
||||
|
||||
Reference in New Issue
Block a user