diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-04-19 21:35:21 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2023-04-19 21:35:21 +0300 |
commit | d7848d6730e57c813eaf8546d73e9172ef301592 (patch) | |
tree | 105cc2745d2ccac8015bd61e71f1a39b8c136190 /src/pages/options/widgets | |
parent | Fixed typo in mikuInvidious Redirect https://github.com/libredirect/libredire... (diff) | |
download | libredirect-d7848d6730e57c813eaf8546d73e9172ef301592.zip |
Added option for localhost frontends
Diffstat (limited to 'src/pages/options/widgets')
-rw-r--r-- | src/pages/options/widgets/services.pug | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/pages/options/widgets/services.pug b/src/pages/options/widgets/services.pug index 98fd25bb..88be0786 100644 --- a/src/pages/options/widgets/services.pug +++ b/src/pages/options/widgets/services.pug @@ -26,6 +26,12 @@ each val, service in services else option(value=frontend)=Object.values(services[service].frontends)[0].name + div(class="some-block option-block" id=service+"-instance-div") + h4() Instance + select(id=service+"-instance") + option(value="localhost") localhost + option(value="public") public instances + if services[service].embeddable div(class="some-block option-block") h4(data-localise="__MSG_redirectType__") Redirect Type @@ -40,7 +46,7 @@ each val, service in services if (service == 'search') div(class="some-block option-block") h4 Set LibRedirect as Default Search Engine - + hr each val, frontend in services[service].frontends |