mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Fix table heading alignment
This commit is contained in:
parent
b8a64ddc38
commit
a249602cf3
2 changed files with 6 additions and 3 deletions
|
|
@ -3771,7 +3771,8 @@ these results were found through a search.</td>
|
|||
### ReleaseGroupType
|
||||
|
||||
<table><thead>
|
||||
<th>Value</th><th>Description</th>
|
||||
<th align="left">Value</th>
|
||||
<th align="left">Description</th>
|
||||
</thead><tbody>
|
||||
<tr>
|
||||
<td valign="top"><strong>ALBUM</strong></td>
|
||||
|
|
@ -3873,7 +3874,8 @@ reference use rather than for general public release.</td>
|
|||
### ReleaseStatus
|
||||
|
||||
<table><thead>
|
||||
<th>Value</th><th>Description</th>
|
||||
<th align="left">Value</th>
|
||||
<th align="left">Description</th>
|
||||
</thead><tbody>
|
||||
<tr>
|
||||
<td valign="top"><strong>OFFICIAL</strong></td>
|
||||
|
|
|
|||
|
|
@ -117,7 +117,8 @@ enums.forEach(type => {
|
|||
console.log(`${type.description}\n`)
|
||||
}
|
||||
console.log('<table><thead>')
|
||||
console.log(' <th>Value</th><th>Description</th>')
|
||||
console.log(' <th align="left">Value</th>')
|
||||
console.log(' <th align="left">Description</th>')
|
||||
console.log('</thead><tbody>')
|
||||
type.enumValues.forEach(value => {
|
||||
console.log(' <tr>')
|
||||
|
|
|
|||
Loading…
Reference in a new issue