fix: restore missing syntax characters and encoding in scaffold.html
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 30s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 30s
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 workspacePath = document.querySelector('#toolForm input[name="workspacePath"]')?.value || document.querySelector('input[name="workspacePath"]')?.value || '';
|
||||||
const categoryKey = document.querySelector('#toolForm [name="categoryKey"]').value.trim();
|
const categoryKey = document.querySelector('#toolForm [name="categoryKey"]').value.trim();
|
||||||
const select = document.getElementById('toolGroupUseCaseSelect');
|
const select = document.getElementById('toolGroupUseCaseSelect');
|
||||||
select.innerHTML = '<option value="">새 UseCase 생성</option>';
|
select.innerHTML = '<option value="">새 도메인 생성</option>';
|
||||||
if (!/^[a-z0-9]{3}$/.test(categoryKey)) return;
|
if (!/^[a-z0-9]{3}$/.test(categoryKey)) return;
|
||||||
try {
|
try {
|
||||||
const response = await fetch(`/api/v1/scaffold/usecases?moduleName=${encodeURIComponent(moduleName)}&categoryKey=${encodeURIComponent(categoryKey)}&workspacePath=${encodeURIComponent(workspacePath)}`);
|
const response = await fetch(`/api/v1/scaffold/usecases?moduleName=${encodeURIComponent(moduleName)}&categoryKey=${encodeURIComponent(categoryKey)}&workspacePath=${encodeURIComponent(workspacePath)}`);
|
||||||
|
|||||||
Reference in New Issue
Block a user