Fix TextInputModal not closing when OK is clicked

This commit is contained in:
Abdo 2025-08-13 11:54:10 +03:00
parent e80829f282
commit fbb9e606eb

View file

@ -61,7 +61,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<button type="button" class="btn btn-secondary" on:click={modal.cancelHandler}>
Cancel
</button>
<button type="button" class="btn btn-primary" on:click={onOkClicked}>OK</button>
<button type="button" class="btn btn-primary" on:click={modal.acceptHandler}>OK</button>
</div>
</Modal>