fix filter
This commit is contained in:
@@ -143,23 +143,10 @@ const asideNavLinks = [
|
|||||||
{name: 'Customers', status:1, icon: 'dot', to: RouteLinks.customerPage},
|
{name: 'Customers', status:1, icon: 'dot', to: RouteLinks.customerPage},
|
||||||
{name: 'Billings', status:1, icon: 'dot', to: RouteLinks.billings},
|
{name: 'Billings', status:1, icon: 'dot', to: RouteLinks.billings},
|
||||||
{name: 'Configurations', status:1, icon: 'arrow-right', subLinks: [
|
{name: 'Configurations', status:1, icon: 'arrow-right', subLinks: [
|
||||||
{name: 'Product Settings', status:1, icon: 'dot', to: RouteLinks.offers },
|
{name: 'Sub. Settings', status:1, icon: 'dot', to: RouteLinks.offers },
|
||||||
{name: 'Manage 2', status:1, icon: 'dot', to: RouteLinks.offers },
|
{name: 'Users Manager', status:1, icon: 'dot', to: RouteLinks.offers },
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// {name:'Product 2', title:'Product 2', status:1, icon: 'product', subLinks: [
|
|
||||||
// {name: 'Applications', status:1, icon: 'dot', to: ''},
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {name:'Product 3', title:'Product 3', status:1, icon: 'product', subLinks: [
|
|
||||||
// {name: 'Applications', status:1, icon: 'dot', to: ''},
|
|
||||||
// {name: 'Configuration', status:1, icon: 'dot', to: ''},
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {name:'Administration', title:'Admin', status:1, icon: 'people', subLinks: [
|
|
||||||
// {name: 'Users', status:1, icon: 'dot', to: RouteLinks.usersPage},
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -69,8 +69,8 @@ export default function SubscriptionsCom() {
|
|||||||
<div className='w-full sm:max-w-48'>
|
<div className='w-full sm:max-w-48'>
|
||||||
<select name='type' value={filter?.type} className='h-10 w-full p-2 rounded-md' onChange={handleFilter}>
|
<select name='type' value={filter?.type} className='h-10 w-full p-2 rounded-md' onChange={handleFilter}>
|
||||||
<option value=''>All</option>
|
<option value=''>All</option>
|
||||||
<option value='transaction_id'>Transaction ID</option>
|
<option value='member_id'>Member ID</option>
|
||||||
<option value='account_id'>Account ID</option>
|
<option value='product_id'>Product ID</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div className='w-full sm:max-w-48'>
|
<div className='w-full sm:max-w-48'>
|
||||||
|
|||||||
Reference in New Issue
Block a user