드롭다운이 밑으로 가는 현상 해결

This commit is contained in:
dohyeons 2025-10-17 18:05:32 +09:00
parent 809ded3746
commit 71075f84b5
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ export function DatabaseConfig({ dataSource, onChange }: DatabaseConfigProps) {
<SelectTrigger className="w-full">
<SelectValue placeholder="커넥션을 선택하세요" />
</SelectTrigger>
<SelectContent>
<SelectContent className="z-[9999]">
{connections.map((conn) => (
<SelectItem key={conn.id} value={String(conn.id)}>
<div className="flex items-center gap-2">

View File

@ -180,7 +180,7 @@ export default function YardEditor({ layout, onBack }: YardEditorProps) {
};
// 자재 배치 해제
const handlePlacementRemove = async (id: number) => {
const handlePlacementRemove = async (id: number): Promise<void> => {
try {
const response = await yardLayoutApi.removePlacement(id);
if (response.success) {