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
ce37854bae
commit
9cc5e752b8
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.
|
# 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.
|
# To enable this feature, set PROXY_AUTH_ENABLED to true and provide the necessary configuration below.
|
||||||
PROXY_AUTH_ENABLED=false
|
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
|
PROXY_AUTH_USER_HEADER=remote-user
|
||||||
# The header name that contains the user's preferred, humanly-readable name
|
# The header name that contains the user's preferred, humanly-readable name
|
||||||
PROXY_AUTH_PREFERRED_NAME_HEADER=remote-preferred-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).
|
# If empty, NO requests will be allowed (which means proxy authentication is disabled).
|
||||||
PROXY_AUTH_ALLOW_LIST=
|
PROXY_AUTH_ALLOW_LIST=
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
v-show="showingInput"
|
v-show="showingInput"
|
||||||
ref="input"
|
ref="input"
|
||||||
v-model="keywords"
|
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"
|
placeholder="Keywords"
|
||||||
type="search"
|
type="search"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<a
|
<a
|
||||||
v-if="currentUser"
|
v-if="currentUser"
|
||||||
v-koel-tooltip.left
|
v-koel-tooltip.left
|
||||||
class="view-profile"
|
class="view-profile rounded-full"
|
||||||
data-testid="view-profile-link"
|
data-testid="view-profile-link"
|
||||||
href="/#/profile"
|
href="/#/profile"
|
||||||
title="Profile and preferences"
|
title="Profile and preferences"
|
||||||
|
|
|
@ -17,7 +17,8 @@
|
||||||
:class="{ dirty: q }"
|
:class="{ dirty: q }"
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
autocorrect="false"
|
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"
|
name="q"
|
||||||
required
|
required
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
|
|
Loading…
Reference in a new issue