diff --git a/changes/changelog.d/1090.bugfix b/changes/changelog.d/1090.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..59be2db6bfb70d43b48ca0ed5841fdfcdb65d807 --- /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 5f3a78c2ed5aa321274b01a482514d98d024147b..1fd338976be367f0ba85e422a8a49816d740c811 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 <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>`_) +- `HomelabOS <https://homelabos.com/docs/software/funkwhale/>`_ Project architecture -------------------- diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index a6d638995914a9b2ccd49ab44d1ba8aff5a222fe..1296ecb9725fa1853045e8b537d3fc87e1e72d2e 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 333212f2a75242ec428d573bcd7ad6d9465ae294..60650c52eaf49df9d69a69f432b2849247d7e9bb 100644 --- a/front/src/components/audio/SearchBar.vue +++ b/front/src/components/audio/SearchBar.vue @@ -1,7 +1,7 @@ <template> <div class="ui fluid category search"> <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> </div> <div class="results"></div>