Merge pull request #1084 from Stremio/fix/addons-selectable-inputs
Some checks failed
Build / build (push) Has been cancelled

[Addons]: Fix default title for addons type select
This commit is contained in:
Timothy Z. 2025-12-08 17:36:08 +02:00 committed by GitHub
commit 058bb58bfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ const mapSelectableInputs = (installedAddons, remoteAddons, t) => {
remoteAddons.selected !== null ?
t.stringWithPrefix(remoteAddons.selected.request.path.type, 'TYPE_')
:
typeSelect.title;
t.string('SELECT_TYPE');
},
onSelect: (value) => {
window.location = value;