mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 22:05:45 +00:00
fix(FE): fix page responsive in project flock dan marketing modules
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import SelectInput from '@/components/input/SelectInput';
|
||||
import { cn } from '@/lib/helper';
|
||||
|
||||
export interface OptionType {
|
||||
label: string;
|
||||
@@ -10,6 +11,7 @@ interface TableRowSizeSelectorProps {
|
||||
onChange: (val: OptionType | OptionType[] | null) => void;
|
||||
options: OptionType[];
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export const TableRowSizeSelector = ({
|
||||
@@ -17,9 +19,10 @@ export const TableRowSizeSelector = ({
|
||||
onChange,
|
||||
options,
|
||||
children,
|
||||
className,
|
||||
}: TableRowSizeSelectorProps) => {
|
||||
return (
|
||||
<div className='flex flex-row gap-3 items-end justify-end'>
|
||||
<div className={cn('flex flex-row gap-3 items-end justify-end', className)}>
|
||||
{children}
|
||||
<SelectInput
|
||||
label='Baris'
|
||||
|
||||
Reference in New Issue
Block a user