mirror of https://github.com/langgenius/dify.git
fix: split line too long
This commit is contained in:
parent
2ebf5f5ffa
commit
9a3b7345c4
|
|
@ -146,7 +146,7 @@ const ComponentPicker = ({
|
|||
{
|
||||
// Divider
|
||||
index !== 0 && options.at(index - 1)?.group !== option.group && (
|
||||
<div className='h-px bg-gray-100 my-1 w-screen -translate-x-1'></div>
|
||||
<div className='h-px bg-gray-100 my-1 w-full -translate-x-1'></div>
|
||||
)
|
||||
}
|
||||
{option.renderMenuOption({
|
||||
|
|
@ -167,7 +167,7 @@ const ComponentPicker = ({
|
|||
<>
|
||||
{
|
||||
(!!options.length) && (
|
||||
<div className='h-px bg-gray-100 my-1 w-screen -translate-x-1'></div>
|
||||
<div className='h-px bg-gray-100 my-1 w-full -translate-x-1'></div>
|
||||
)
|
||||
}
|
||||
<div className='p-1'>
|
||||
|
|
|
|||
Loading…
Reference in New Issue