mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
## Summary Removes "Desktop" suffix from the desktop app window title. ## Changes - **What**: Changes window title from "ComfyUI Desktop" to "ComfyUI" ## Review Focus Fixes title regression introduced during desktop UI separation.
13 lines
317 B
HTML
13 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>ComfyUI</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
|
</head>
|
|
<body>
|
|
<div id="desktop-app"></div>
|
|
<script type="module" src="src/main.ts"></script>
|
|
</body>
|
|
</html>
|