diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-01-30 15:46:10 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2023-01-30 15:46:10 +0300 |
commit | 21e87a6412b4dac679846884af16f744bc152eca (patch) | |
tree | 77b1d67e150fb77a1c5b19dee8ee22e6dad6d255 /src/pages/widgets | |
parent | Updated screenshots (diff) | |
download | libredirect-21e87a6412b4dac679846884af16f744bc152eca.zip |
Fixed locales and other typing stuff
Diffstat (limited to 'src/pages/widgets')
-rw-r--r-- | src/pages/widgets/links.pug | 2 | ||||
-rw-r--r-- | src/pages/widgets/switches.pug | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/widgets/links.pug b/src/pages/widgets/links.pug index cc7f86fe..2421a24a 100644 --- a/src/pages/widgets/links.pug +++ b/src/pages/widgets/links.pug @@ -15,7 +15,7 @@ section(class="links" id="links") span(data-localise="__MSG_"+key+"__")=services[key].name div(class="title") - a(href="#about") + a(target="_blank" href="https://libredirect.github.io") img(class='dark' src="/assets/images/about-icon.svg") img(class='light' src="/assets/images/about-icon-light.svg") diff --git a/src/pages/widgets/switches.pug b/src/pages/widgets/switches.pug index 6b6f0c2b..2dfad676 100644 --- a/src/pages/widgets/switches.pug +++ b/src/pages/widgets/switches.pug @@ -1,6 +1,6 @@ each val, service in services div(class=service + " some-block") - a(class="title" href=`/pages/options/index.html#${services[service].name.toLowerCase()}`) + a(class="title" href=services[service].url) if services[service].imageType == 'svgMono' img(class='dark' src=`/assets/images/${service}-icon.svg`) img(class='light' src=`/assets/images/${service}-icon-light.svg`) |