Fixing Service Module Render Bug
This commit is contained in:
parent
5db10ab4f7
commit
6d9b404fbc
|
|
@ -23,7 +23,7 @@ See also: [Installation](docs/INSTALL.md)
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/jhaverlack/sdl.git
|
$ git clone https://github.com/jhaverlack/sdl.git
|
||||||
$ cd sdl
|
$ cd sdl
|
||||||
$ install-sdl.sh
|
$ ./install-sdl.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Point you browser to http://IP-ADDR:8081
|
Point you browser to http://IP-ADDR:8081
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,17 @@
|
||||||
{
|
{
|
||||||
"releases": [
|
"releases": [
|
||||||
|
{
|
||||||
|
"version": "0.3.2",
|
||||||
|
"date": "2026-01-31",
|
||||||
|
"maturity": "ALPHA",
|
||||||
|
"summary": "",
|
||||||
|
"notes": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "0.3.1",
|
"version": "0.3.1",
|
||||||
"date": "2026-01-31",
|
"date": "2026-01-31",
|
||||||
"maturity": "ALPHA",
|
"maturity": "ALPHA",
|
||||||
"summary": "",
|
"summary": "README Cleanup",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -12,7 +19,7 @@
|
||||||
"date": "2026-01-31",
|
"date": "2026-01-31",
|
||||||
"maturity": "ALPHA",
|
"maturity": "ALPHA",
|
||||||
"summary": "Initial Codebase",
|
"summary": "Initial Codebase",
|
||||||
"notes": ""
|
"notes": "Initial GitHub Release"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,19 @@
|
||||||
| **Author** | John Haverlack |
|
| **Author** | John Haverlack |
|
||||||
| **Copyright** | 2026 John Haverlack |
|
| **Copyright** | 2026 John Haverlack |
|
||||||
| **License** | MIT |
|
| **License** | MIT |
|
||||||
| **Version** | 0.3.1 |
|
| **Version** | 0.3.2 |
|
||||||
| **Date** | 2026-01-31 |
|
| **Date** | 2026-01-31 |
|
||||||
|
|
||||||
|
## v0.3.2 - 2026-01-31 (ALPHA)
|
||||||
|
|
||||||
|
- Start v0.3.2
|
||||||
|
|
||||||
## v0.3.1 - 2026-01-31 (ALPHA)
|
## v0.3.1 - 2026-01-31 (ALPHA)
|
||||||
|
|
||||||
|
**Summary**
|
||||||
|
README Cleanup
|
||||||
|
|
||||||
|
- v0.3.1
|
||||||
- Start v0.3.1
|
- Start v0.3.1
|
||||||
- Removing duplicate LICENSE file
|
- Removing duplicate LICENSE file
|
||||||
- README Cleanup
|
- README Cleanup
|
||||||
|
|
|
||||||
|
|
@ -314,12 +314,6 @@ function renderModulesTable(msg) {
|
||||||
const modules = msg.msg.modules;
|
const modules = msg.msg.modules;
|
||||||
let html = '<h5>Service Modules</h5>';
|
let html = '<h5>Service Modules</h5>';
|
||||||
html += '<table class="table table-sm table-striped">';
|
html += '<table class="table table-sm table-striped">';
|
||||||
// <thead>
|
|
||||||
// <tr>
|
|
||||||
// <th>Module</th>
|
|
||||||
// <th>Status</th>
|
|
||||||
// </tr>
|
|
||||||
// </thead>
|
|
||||||
html += `<tbody> `;
|
html += `<tbody> `;
|
||||||
|
|
||||||
for (const [name, info] of Object.entries(modules)) {
|
for (const [name, info] of Object.entries(modules)) {
|
||||||
|
|
@ -330,7 +324,7 @@ function renderModulesTable(msg) {
|
||||||
|
|
||||||
html += `
|
html += `
|
||||||
<tr>
|
<tr>
|
||||||
<th${name}</th>
|
<th>${name}</th>
|
||||||
<td>${icon}</td>
|
<td>${icon}</td>
|
||||||
</tr>
|
</tr>
|
||||||
`;
|
`;
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,19 @@
|
||||||
| **Author** | John Haverlack |
|
| **Author** | John Haverlack |
|
||||||
| **Copyright** | 2026 John Haverlack |
|
| **Copyright** | 2026 John Haverlack |
|
||||||
| **License** | MIT |
|
| **License** | MIT |
|
||||||
| **Version** | 0.3.1 |
|
| **Version** | 0.3.2 |
|
||||||
| **Date** | 2026-01-31 |
|
| **Date** | 2026-01-31 |
|
||||||
|
|
||||||
|
## v0.3.2 - 2026-01-31 (ALPHA)
|
||||||
|
|
||||||
|
- Start v0.3.2
|
||||||
|
|
||||||
## v0.3.1 - 2026-01-31 (ALPHA)
|
## v0.3.1 - 2026-01-31 (ALPHA)
|
||||||
|
|
||||||
|
**Summary**
|
||||||
|
README Cleanup
|
||||||
|
|
||||||
|
- v0.3.1
|
||||||
- Start v0.3.1
|
- Start v0.3.1
|
||||||
- Removing duplicate LICENSE file
|
- Removing duplicate LICENSE file
|
||||||
- README Cleanup
|
- README Cleanup
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue