fix(platform-test): replace emoji icons with SVG icon key
- plugin.json: all emoji icons replaced with "flask" (matches Icon.svelte name)
- statusBar label: "🧪 All Tests Pass" → "[OK] All Tests Pass"
- frontend/src/index.js: emoji in header replaced with '◉' circle
This commit is contained in:
parent
3751f52055
commit
0cc4552506
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
/* ── Header ─────────────────────────────────────────────────── */
|
||||
var header = div('pt-header', [
|
||||
span('pt-icon', '🧪'),
|
||||
span('pt-icon', '◉'),
|
||||
div('pt-title-group', [
|
||||
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
||||
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
/* ── Header ─────────────────────────────────────────────────── */
|
||||
var header = div('pt-header', [
|
||||
span('pt-icon', '🧪'),
|
||||
span('pt-icon', '◉'),
|
||||
div('pt-title-group', [
|
||||
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
||||
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"apiVersion": "0.1.0",
|
||||
"description": "Runtime test plugin for verifying the Verstak platform: manifest loading, capability registration, contribution injection, event bus, and UI rendering.",
|
||||
"source": "official",
|
||||
"icon": "🧪",
|
||||
"icon": "flask",
|
||||
"provides": [
|
||||
"verstak/platform-test/v1",
|
||||
"verstak/diagnostics/v1"
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
{
|
||||
"id": "verstak.platform-test.diagnostics",
|
||||
"title": "Platform Diagnostics",
|
||||
"icon": "🧪",
|
||||
"icon": "flask",
|
||||
"component": "DiagnosticsPanel"
|
||||
}
|
||||
],
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
{
|
||||
"id": "verstak.platform-test.sidebar",
|
||||
"title": "Platform Test",
|
||||
"icon": "🧪",
|
||||
"icon": "flask",
|
||||
"view": "verstak.platform-test.diagnostics",
|
||||
"position": 100
|
||||
}
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
"statusBarItems": [
|
||||
{
|
||||
"id": "verstak.platform-test.status",
|
||||
"label": "🧪 All Tests Pass",
|
||||
"label": "[OK] All Tests Pass",
|
||||
"position": "right",
|
||||
"handler": "openDiagnostics"
|
||||
}
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
{
|
||||
"id": "verstak.platform-test.settings",
|
||||
"title": "Platform Test Settings",
|
||||
"icon": "🧪",
|
||||
"icon": "flask",
|
||||
"component": "PlatformTestSettings"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue