app adjustments
Some checks failed
CI / Native Windows Build And Tests (push) Failing after 7s
CI / React UI Build (push) Has been cancelled
CI / Windows Release Package (push) Has been cancelled

This commit is contained in:
2026-05-03 12:03:20 +10:00
parent 44ed901e9a
commit 50bdd7b2bd
5 changed files with 228 additions and 82 deletions

View File

@@ -6,8 +6,8 @@ function formatNumber(value, digits = 3) {
export function StatusPanels({ app, performance, runtime, video }) {
return (
<section className="status-grid">
<div className="panel">
<>
<div className="panel panel--runtime">
<h2>Runtime</h2>
<KvList
values={[
@@ -24,7 +24,7 @@ export function StatusPanels({ app, performance, runtime, video }) {
/>
</div>
<div className="panel">
<div className="panel panel--video">
<h2>Video</h2>
<KvList
values={[
@@ -35,10 +35,10 @@ export function StatusPanels({ app, performance, runtime, video }) {
/>
</div>
<div className="panel panel--full">
<div className="panel panel--compiler">
<h2>Compiler</h2>
<pre>{runtime.compileMessage || "No compiler output."}</pre>
</div>
</section>
</>
);
}