Commit f62c8ff4 authored by Ahmed Awan's avatar Ahmed Awan
Browse files

[25.0] Add username filter to published pages grid

parent 48a3dd6c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -97,6 +97,7 @@ const fields: FieldArray = [
const validFilters: Record<string, ValidFilter<string | boolean | undefined>> = {
    title: { placeholder: "title", type: String, handler: contains("title"), menuItem: true },
    slug: { handler: contains("slug"), menuItem: false },
    user: { placeholder: "user", type: String, handler: contains("username"), menuItem: true },
};

/**