@nine-lab/nine-mu 0.1.171 → 0.1.172

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.171",
3
+ "version": "0.1.172",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -92,6 +92,7 @@ export class NineChat extends HTMLElement {
92
92
  // 3. nine.safe로 매니저 로직 실행
93
93
  const [result, err] = await nine.safe(this.#manager.handleChatSubmit(target));
94
94
  target.removeAttribute('disabled');
95
+ target.focus();
95
96
 
96
97
  if (err) {
97
98
  console.error("Manager 실행 에러:", err);