fix: correct placeholder text in usecase dropdown to '새 UseCase 생성' instead of '새 도메인 생성'
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 10s

This commit is contained in:
jade
2026-09-01 16:49:53 +09:00
parent f9b96bf7ab
commit a6eb4c4fe5

View File

@@ -1697,7 +1697,7 @@
const workspacePath = document.querySelector('#toolForm input[name="workspacePath"]')?.value || document.querySelector('input[name="workspacePath"]')?.value || '';
const categoryKey = document.querySelector('#toolForm [name="categoryKey"]').value.trim();
const select = document.getElementById('toolGroupUseCaseSelect');
select.innerHTML = '<option value="">새 도메인 생성</option>';
select.innerHTML = '<option value="">새 UseCase 생성</option>';
if (!/^[a-z0-9]{3}$/.test(categoryKey)) return;
try {
const response = await fetch(`/api/v1/scaffold/usecases?moduleName=${encodeURIComponent(moduleName)}&categoryKey=${encodeURIComponent(categoryKey)}&workspacePath=${encodeURIComponent(workspacePath)}`);