Skip to content
Snippets Groups Projects
Commit 46504e23 authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'evol/redmine-ticket-12457' into 'develop'

REDMINE_ISSUE-12457 fix log path in connection page

See merge request !158
parents 923119f4 894b0406
No related branches found
No related tags found
1 merge request!158REDMINE_ISSUE-12457 fix log path in connection page
......@@ -24,7 +24,8 @@ NODE_ENV=development
"VUE_APP_LOCALE":"fr-FR",
"VUE_APP_APPLICATION_NAME":"GéoContrib",
"VUE_APP_APPLICATION_ABSTRACT":"Application de saisie d'informations géographiques contributive",
"VUE_APP_LOGO_PATH":"@/assets/img/logo-neogeo-circle.png",
"VUE_APP_APPLICATION_FAVICO":"/geocontrib/favicon.ico",
"VUE_APP_LOGO_PATH":"/geocontrib/img/logo-neogeo-circle.png",
"VUE_APP_DJANGO_BASE":"",
"VUE_APP_DJANGO_API_BASE":"/geocontrib/api/",
"DEFAULT_BASE_MAP":{
......
public/img/logo_g2f.png

54.3 KiB

......@@ -4,7 +4,7 @@
<div class="fourteen wide column">
<img
class="ui centered small image"
src="@/assets/img/logo-neogeo-circle.png"
:src="logo"
/>
<h2 class="ui center aligned icon header">
<div class="content">
......@@ -74,13 +74,13 @@ export default {
};
},
computed: {
LOGO_PATH: function () {
logo() {
return this.$store.state.configuration.VUE_APP_LOGO_PATH;
},
APPLICATION_NAME: function () {
APPLICATION_NAME() {
return this.$store.state.configuration.VUE_APP_APPLICATION_NAME;
},
APPLICATION_ABSTRACT: function () {
APPLICATION_ABSTRACT() {
return this.$store.state.configuration.VUE_APP_APPLICATION_ABSTRACT;
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment