fix: correct placeholder text in usecase dropdown to '새 UseCase 생성' instead of '새 도메인 생성'
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 10s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 10s
This commit is contained in:
@@ -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)}`);
|
||||
|
||||
Reference in New Issue
Block a user