fixed minor display bug

This commit is contained in:
=
2023-03-09 16:57:01 +00:00
parent 0b27a3c833
commit 3e1771c655
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ const generateChangesTable = (changes:VersionChange[]) => `
<td><ul>${c.changes.map((v) => `<li>${v}</li>`).join('')}</ul></td> <td><ul>${c.changes.map((v) => `<li>${v}</li>`).join('')}</ul></td>
<td>${c.option}</td> <td>${c.option}</td>
</tr> </tr>
`)} `).join('')}
</tbody> </tbody>
</table> </table>
`; `;

View File

@@ -63,7 +63,7 @@ const generateForm = (c:MetadataFlex | null):string => {
${toTextInput('banner', c)} ${toTextInput('banner', c)}
${toTextInput('lud06', c, 'lud06 (LNURL)')} ${toTextInput('lud06', c, 'lud06 (LNURL)')}
${toTextInput('lud16', c)} ${toTextInput('lud16', c)}
${customkeys.map((k) => toTextInput(k, c))} ${customkeys.map((k) => toTextInput(k, c)).join('')}
<button id="metadatasubmitbutton" type="submit">${c ? 'Update' : 'Save'}</button> <button id="metadatasubmitbutton" type="submit">${c ? 'Update' : 'Save'}</button>
<button id="metadataresetbutton" class="secondary outline" type="reset">Reset Form</button> <button id="metadataresetbutton" class="secondary outline" type="reset">Reset Form</button>
</form>`; </form>`;