Files
verstak/cmd/verstak-gui/frontend-dist/index.html
mirivlad 2b3de296b9 fix(frontend): restore capture/drag overlay state vars
Same class of bug as cd982f2: 9878ab4 (extract FilesTab) also
removed 'let' declarations for capture/drag-drop state that's still
used by the inbox capture flow and CaptureDropOverlay:

  captureDropActive, captureDropLabel, captureDragDepth,
  lastCaptureDragOverAt, captureDragResetTimer,
  dropRootValid, inboxDropValid

Without them, Svelte runtime throws ReferenceError on first render
('captureDropActive is not defined'), leaving the WebView empty.

Verified with headless render smoke: .app + .sidebar mount,
sidebar shows system views + workspace, welcome screen renders.

Rebuild embedded frontend bundle.
2026-06-15 17:46:10 +00:00

29 lines
988 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/app-icons/icon_16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/app-icons/icon_32x32.png" />
<link rel="icon" type="image/png" sizes="64x64" href="/assets/app-icons/icon_64x64.png" />
<link rel="icon" type="image/png" sizes="128x128" href="/assets/app-icons/icon_128x128.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Верстак</title>
<style>
/* Critical reset — no white borders, full viewport */
html, body, #app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background: #13131f;
}
</style>
<script type="module" crossorigin src="/assets/main-C0D__Sxo.js"></script>
<link rel="stylesheet" crossorigin href="/assets/main-Bl-yCbt2.css">
</head>
<body>
<div id="app"></div>
</body>
</html>