feat: add search to Help Center admin pages (#14772)

This commit is contained in:
Sivin Varghese
2026-06-19 12:41:21 +05:30
committed by GitHub
parent ac15339456
commit 32b63ad0c0
12 changed files with 184 additions and 42 deletions
@@ -7,7 +7,7 @@ import types from '../../mutation-types';
export const actions = {
index: async (
{ commit },
{ pageNumber, portalSlug, locale, status, authorId, categorySlug }
{ pageNumber, portalSlug, locale, status, authorId, categorySlug, query }
) => {
try {
commit(types.SET_UI_FLAG, { isFetching: true });
@@ -18,6 +18,7 @@ export const actions = {
status,
authorId,
categorySlug,
query,
});
const payload = camelcaseKeys(data.payload);
const meta = camelcaseKeys(data.meta);