
* Feature preview * Feature preview * Feature preview * Feature preview * Feature preview * Add visible flag * Typo * Typo * Fix re-login * Fix re-login * Fix enable * Fix enable * content * Fix types, overflow content * Fix user menu
19 lines
514 B
TypeScript
19 lines
514 B
TypeScript
// @ts-nocheck
|
|
|
|
import K35081 from "./images/filters.png"
|
|
|
|
const product_filters = () => (<><p><img src={K35081} alt="new filters"/></p>
|
|
<p>Experience the new look and enhanced abilities of new fitering mechanism.
|
|
Easily combine any criteria you want, and quickly browse their values.</p>
|
|
</>)
|
|
|
|
export const AVAILABLE_FLAGS = [{
|
|
name: "product_filters",
|
|
displayName: "Products filtering",
|
|
component: product_filters,
|
|
visible: true,
|
|
content: {
|
|
enabled: false,
|
|
payload: "default",
|
|
}
|
|
}] as const;
|