1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-07-12 10:25:54 +02:00

Ensure IPA field works in edit form

This commit is contained in:
Robbie Antenesse 2025-06-26 22:52:36 -06:00
parent 6441a0546b
commit acaf6cd406

View file

@ -200,7 +200,9 @@ export function renderEditForm(event = false) {
<a class="button edit-cancel">Cancel Edit</a> <a class="button edit-cancel">Cancel Edit</a>
</form>`; </form>`;
document.getElementById(wordId.toString()).innerHTML = editForm; const parent = document.getElementById(wordId.toString())
parent.innerHTML = editForm;
setupIPAFields(parent);
renderPartsOfSpeech(true); renderPartsOfSpeech(true);
renderTemplateSelectOptions(); renderTemplateSelectOptions();
} }