🐛 핫픽스: script 태그 닫힘(\) 오타 수정으로 인한 웹뷰 렌더링 실패 해결

This commit is contained in:
Jay
2026-04-11 22:36:16 +09:00
parent b4694c8a4c
commit 322a86a591
2 changed files with 142 additions and 2 deletions
+2 -2
View File
@@ -646,7 +646,7 @@ window.addEventListener('message',e=>{const msg=e.data;switch(msg.type){
case 'restoreMessages':chat.innerHTML='';if(msg.value&&msg.value.length>0){msg.value.forEach(m=>addMsg(m.text,m.role))}break;
case 'focusInput':input.focus();break;
case 'injectPrompt':input.value=msg.value;input.style.height='auto';input.style.height=Math.min(input.scrollHeight,150)+'px';send();break;
}});
<\/script></body></html>`;
} });
</script></body></html>`;
}
}