fix: restore missing syntax characters and encoding in scaffold.html
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 30s

This commit is contained in:
jade
2026-08-31 16:16:01 +09:00
parent 2809f1fd3a
commit 1e9b8506d0

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="">새 UseCase 생성</option>';
select.innerHTML = '<option value="">새 도메인 생성</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)}`);