mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
chore: minor improvements
This commit is contained in:
parent
ecbc7de7fa
commit
4226e41910
4 changed files with 6 additions and 5 deletions
|
@ -160,11 +160,11 @@ SSO_GOOGLE_HOSTED_DOMAIN=yourdomain.com
|
|||
# Koel can be configured to authenticate users via a reverse proxy.
|
||||
# To enable this feature, set PROXY_AUTH_ENABLED to true and provide the necessary configuration below.
|
||||
PROXY_AUTH_ENABLED=false
|
||||
# The header name that contains the unique identifer for the user
|
||||
# The header name that contains the unique identifier for the user
|
||||
PROXY_AUTH_USER_HEADER=remote-user
|
||||
# The header name that contains the user's preferred, humanly-readable name
|
||||
PROXY_AUTH_PREFERRED_NAME_HEADER=remote-preferred-name
|
||||
# A comma-separated list of allowed proxy IPs or CIDRs, for example 10.10.1.0/24 or 2001:0db8:/32
|
||||
# A comma-separated list of allowed proxy IPs or CIDRs, for example, 10.10.1.0/24 or 2001:0db8:/32
|
||||
# If empty, NO requests will be allowed (which means proxy authentication is disabled).
|
||||
PROXY_AUTH_ALLOW_LIST=
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
v-show="showingInput"
|
||||
ref="input"
|
||||
v-model="keywords"
|
||||
class="!text-k-text-primary !bg-transparent !rounded-none !pl-0 !h-[unset] placeholder:text-white/50"
|
||||
class="!text-k-text-primary !bg-transparent !rounded-none !pl-0 !h-[unset] placeholder:text-white/50 focus-visible:outline-0"
|
||||
placeholder="Keywords"
|
||||
type="search"
|
||||
/>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<a
|
||||
v-if="currentUser"
|
||||
v-koel-tooltip.left
|
||||
class="view-profile"
|
||||
class="view-profile rounded-full"
|
||||
data-testid="view-profile-link"
|
||||
href="/#/profile"
|
||||
title="Profile and preferences"
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
:class="{ dirty: q }"
|
||||
:placeholder="placeholder"
|
||||
autocorrect="false"
|
||||
class="w-full rounded-none h-[36px] !bg-transparent !text-k-text-primary !placeholder:text-white/50"
|
||||
class="w-full rounded-none h-[36px] !bg-transparent !text-k-text-primary !placeholder:text-white/50
|
||||
focus-visible:outline-0"
|
||||
name="q"
|
||||
required
|
||||
spellcheck="false"
|
||||
|
|
Loading…
Reference in a new issue