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