mirror of
https://github.com/aljazceru/nostr-profile-manager.git
synced 2025-12-17 05:34:20 +01:00
fixed minor display bug
This commit is contained in:
@@ -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>
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -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>`;
|
||||||
|
|||||||
Reference in New Issue
Block a user