diff --git a/changes/changelog.d/1090.bugfix b/changes/changelog.d/1090.bugfix new file mode 100644 index 000000000..59be2db6b --- /dev/null +++ b/changes/changelog.d/1090.bugfix @@ -0,0 +1 @@ +Ensure firefox password manager dont autofill username in search bar (#1090) diff --git a/docs/installation/index.rst b/docs/installation/index.rst index 5f3a78c2e..1fd338976 100644 --- a/docs/installation/index.rst +++ b/docs/installation/index.rst @@ -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) - `NixOS `_ (kindly maintained by @mmai) - `Helm chart `_ to install Funkwhale on Kubernetes (kindly maintained by `@ananace `_) +- `HomelabOS `_ Project architecture -------------------- diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index a6d638995..1296ecb97 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -436,6 +436,7 @@ export default { param = "token" value = this.$store.state.auth.scopedTokens.listen } + console.log('HELLO', param, value, this.$store.state.auth.scopedTokens) sources.forEach(e => { e.url = url.updateQueryString(e.url, param, value) }) diff --git a/front/src/components/audio/SearchBar.vue b/front/src/components/audio/SearchBar.vue index 333212f2a..60650c52e 100644 --- a/front/src/components/audio/SearchBar.vue +++ b/front/src/components/audio/SearchBar.vue @@ -1,7 +1,7 @@