드롭다운이 밑으로 가는 현상 해결
This commit is contained in:
parent
809ded3746
commit
71075f84b5
|
|
@ -150,7 +150,7 @@ export function DatabaseConfig({ dataSource, onChange }: DatabaseConfigProps) {
|
||||||
<SelectTrigger className="w-full">
|
<SelectTrigger className="w-full">
|
||||||
<SelectValue placeholder="커넥션을 선택하세요" />
|
<SelectValue placeholder="커넥션을 선택하세요" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent className="z-[9999]">
|
||||||
{connections.map((conn) => (
|
{connections.map((conn) => (
|
||||||
<SelectItem key={conn.id} value={String(conn.id)}>
|
<SelectItem key={conn.id} value={String(conn.id)}>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,7 @@ export default function YardEditor({ layout, onBack }: YardEditorProps) {
|
||||||
};
|
};
|
||||||
|
|
||||||
// 자재 배치 해제
|
// 자재 배치 해제
|
||||||
const handlePlacementRemove = async (id: number) => {
|
const handlePlacementRemove = async (id: number): Promise<void> => {
|
||||||
try {
|
try {
|
||||||
const response = await yardLayoutApi.removePlacement(id);
|
const response = await yardLayoutApi.removePlacement(id);
|
||||||
if (response.success) {
|
if (response.success) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue