UI: disable conversion mode buttons on edit

The conversion type cannot be changed once a share is created, so disable the edit buttons.
This commit is contained in:
Max Berger
2026-06-13 21:13:45 +02:00
parent 04cbf35a23
commit ea8f4a4477
2 changed files with 11 additions and 0 deletions

View File

@@ -427,6 +427,7 @@ export class CreateEditShareScene {
radio.value = opt;
radio.id = id;
radio.checked = (opt === initial_conversion);
radio.disabled = this._edit;
radio.onchange = () => this._on_conversion_change();
let label = document.createElement("label");