mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Fixed uppercase K of WeKan.
Thanks to xet7 ! Related https://github.com/wekan/wekan/pull/5857
This commit is contained in:
parent
4ce7ff7cef
commit
b137108ae1
2 changed files with 6 additions and 6 deletions
|
@ -12,8 +12,8 @@ head
|
|||
link(rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png")
|
||||
link(rel="manifest" crossOrigin="use-credentials" href="/site.webmanifest")
|
||||
link(rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5")
|
||||
meta(name="apple-mobile-web-app-title" content="Wekan")
|
||||
meta(name="application-name" content="Wekan")
|
||||
meta(name="apple-mobile-web-app-title" content="WeKan")
|
||||
meta(name="application-name" content="WeKan")
|
||||
meta(name="msapplication-TileColor" content="#00aba9")
|
||||
meta(name="theme-color" content="#ffffff")
|
||||
//link(rel="stylesheet" type="text/css" class="__meteor-css__" href="css/html5-default-theme.css")
|
||||
|
@ -21,11 +21,11 @@ head
|
|||
template(name="userFormsLayout")
|
||||
section.auth-layout
|
||||
if currentSetting.hideLogo
|
||||
h1.at-form-landing-logo Wekan
|
||||
h1.at-form-landing-logo WeKan
|
||||
br
|
||||
br
|
||||
unless currentSetting.hideLogo
|
||||
h1.at-form-landing-logo Wekan
|
||||
h1.at-form-landing-logo WeKan
|
||||
if currentSetting.customLoginLogoImageUrl
|
||||
if currentSetting.customLoginLogoLinkUrl
|
||||
a(href="{{currentSetting.customLoginLogoLinkUrl}}")
|
||||
|
@ -35,7 +35,7 @@ template(name="userFormsLayout")
|
|||
img(src="{{currentSetting.customLoginLogoImageUrl}}" width="300" height="auto")
|
||||
br
|
||||
else
|
||||
img(src="{{pathFor '/wekan-logo.svg'}}" alt="" width="300" height="auto")
|
||||
img(src="{{pathFor '/WeKan-logo.svg'}}" alt="" width="300" height="auto")
|
||||
br
|
||||
if currentSetting.textBelowCustomLoginLogo
|
||||
hr
|
||||
|
|
|
@ -226,7 +226,7 @@ FlowRouter.route('/global-search', {
|
|||
Utils.manageCustomUI();
|
||||
Utils.manageMatomo();
|
||||
const currentSetting = ReactiveCache.getCurrentSetting && ReactiveCache.getCurrentSetting();
|
||||
const productName = currentSetting && currentSetting.productName ? currentSetting.productName : 'Wekan';
|
||||
const productName = currentSetting && currentSetting.productName ? currentSetting.productName : 'WeKan';
|
||||
DocHead.setTitle(`${TAPi18n.__('globalSearch-title')} - ${productName}`);
|
||||
if (FlowRouter.getQueryParam('q')) {
|
||||
Session.set(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue