Skip to content
Snippets Groups Projects
Unverified Commit 15dfca1c authored by Agate's avatar Agate :speech_balloon:
Browse files

Merge branch 'master' into develop

parents b52c9f98 96f6b1e1
No related branches found
No related tags found
No related merge requests found
Ensure firefox password manager dont autofill username in search bar (#1090)
...@@ -61,6 +61,7 @@ Funkwhale packages are available for the following platforms: ...@@ -61,6 +61,7 @@ Funkwhale packages are available for the following platforms:
- ArchLinux (as an AUR package): if you'd rather use a package, check out this alternative installation method on ArchLinux: https://wiki.archlinux.org/index.php/Funkwhale (package and wiki kindly maintained by getzee) - ArchLinux (as an AUR package): if you'd rather use a package, check out this alternative installation method on ArchLinux: https://wiki.archlinux.org/index.php/Funkwhale (package and wiki kindly maintained by getzee)
- `NixOS <https://github.com/mmai/funkwhale-nixos>`_ (kindly maintained by @mmai) - `NixOS <https://github.com/mmai/funkwhale-nixos>`_ (kindly maintained by @mmai)
- `Helm chart <https://gitlab.com/ananace/charts/>`_ to install Funkwhale on Kubernetes (kindly maintained by `@ananace <https://gitlab.com/ananace>`_) - `Helm chart <https://gitlab.com/ananace/charts/>`_ to install Funkwhale on Kubernetes (kindly maintained by `@ananace <https://gitlab.com/ananace>`_)
- `HomelabOS <https://homelabos.com/docs/software/funkwhale/>`_
Project architecture Project architecture
-------------------- --------------------
......
...@@ -436,6 +436,7 @@ export default { ...@@ -436,6 +436,7 @@ export default {
param = "token" param = "token"
value = this.$store.state.auth.scopedTokens.listen value = this.$store.state.auth.scopedTokens.listen
} }
console.log('HELLO', param, value, this.$store.state.auth.scopedTokens)
sources.forEach(e => { sources.forEach(e => {
e.url = url.updateQueryString(e.url, param, value) e.url = url.updateQueryString(e.url, param, value)
}) })
......
<template> <template>
<div class="ui fluid category search"> <div class="ui fluid category search">
<slot></slot><div class="ui icon input"> <slot></slot><div class="ui icon input">
<input ref="search" class="prompt" name="search" :placeholder="labels.placeholder" type="text" @keydown.esc="$event.target.blur()"> <input ref="search" type="search" class="prompt" name="search" :placeholder="labels.placeholder" @keydown.esc="$event.target.blur()">
<i class="search icon"></i> <i class="search icon"></i>
</div> </div>
<div class="results"></div> <div class="results"></div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment