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 ─────────────────────────────────────────────────── */
|
/* ── Header ─────────────────────────────────────────────────── */
|
||||||
var header = div('pt-header', [
|
var header = div('pt-header', [
|
||||||
span('pt-icon', '🧪'),
|
span('pt-icon', '◉'),
|
||||||
div('pt-title-group', [
|
div('pt-title-group', [
|
||||||
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
||||||
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
|
|
||||||
/* ── Header ─────────────────────────────────────────────────── */
|
/* ── Header ─────────────────────────────────────────────────── */
|
||||||
var header = div('pt-header', [
|
var header = div('pt-header', [
|
||||||
span('pt-icon', '🧪'),
|
span('pt-icon', '◉'),
|
||||||
div('pt-title-group', [
|
div('pt-title-group', [
|
||||||
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']),
|
||||||
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
el('p', { className: 'pt-plugin-id' }, [api.pluginId]),
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
"apiVersion": "0.1.0",
|
"apiVersion": "0.1.0",
|
||||||
"description": "Runtime test plugin for verifying the Verstak platform: manifest loading, capability registration, contribution injection, event bus, and UI rendering.",
|
"description": "Runtime test plugin for verifying the Verstak platform: manifest loading, capability registration, contribution injection, event bus, and UI rendering.",
|
||||||
"source": "official",
|
"source": "official",
|
||||||
"icon": "🧪",
|
"icon": "flask",
|
||||||
"provides": [
|
"provides": [
|
||||||
"verstak/platform-test/v1",
|
"verstak/platform-test/v1",
|
||||||
"verstak/diagnostics/v1"
|
"verstak/diagnostics/v1"
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
{
|
{
|
||||||
"id": "verstak.platform-test.diagnostics",
|
"id": "verstak.platform-test.diagnostics",
|
||||||
"title": "Platform Diagnostics",
|
"title": "Platform Diagnostics",
|
||||||
"icon": "🧪",
|
"icon": "flask",
|
||||||
"component": "DiagnosticsPanel"
|
"component": "DiagnosticsPanel"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
{
|
{
|
||||||
"id": "verstak.platform-test.sidebar",
|
"id": "verstak.platform-test.sidebar",
|
||||||
"title": "Platform Test",
|
"title": "Platform Test",
|
||||||
"icon": "🧪",
|
"icon": "flask",
|
||||||
"view": "verstak.platform-test.diagnostics",
|
"view": "verstak.platform-test.diagnostics",
|
||||||
"position": 100
|
"position": 100
|
||||||
}
|
}
|
||||||
|
|
@ -62,7 +62,7 @@
|
||||||
"statusBarItems": [
|
"statusBarItems": [
|
||||||
{
|
{
|
||||||
"id": "verstak.platform-test.status",
|
"id": "verstak.platform-test.status",
|
||||||
"label": "🧪 All Tests Pass",
|
"label": "[OK] All Tests Pass",
|
||||||
"position": "right",
|
"position": "right",
|
||||||
"handler": "openDiagnostics"
|
"handler": "openDiagnostics"
|
||||||
}
|
}
|
||||||
|
|
@ -71,7 +71,7 @@
|
||||||
{
|
{
|
||||||
"id": "verstak.platform-test.settings",
|
"id": "verstak.platform-test.settings",
|
||||||
"title": "Platform Test Settings",
|
"title": "Platform Test Settings",
|
||||||
"icon": "🧪",
|
"icon": "flask",
|
||||||
"component": "PlatformTestSettings"
|
"component": "PlatformTestSettings"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue