Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Géocontrib Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GéoContrib
Géocontrib Frontend
Commits
8251b929
Commit
8251b929
authored
3 years ago
by
DESPRES Damien
Browse files
Options
Downloads
Plain Diff
Merge branch 'evol/redmine-ticket-11081' into 'develop'
remove / in url See merge request
!132
parents
7bdc32e7
3ee2aec7
No related branches found
Branches containing commit
Tags
2.2.0
Tags containing commit
1 merge request
!132
remove / in url
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/views/feature/Feature_edit.vue
+1
-1
1 addition, 1 deletion
src/views/feature/Feature_edit.vue
src/views/feature/Feature_list.vue
+1
-1
1 addition, 1 deletion
src/views/feature/Feature_list.vue
src/views/project/Project_detail.vue
+1
-1
1 addition, 1 deletion
src/views/project/Project_detail.vue
with
3 additions
and
3 deletions
src/views/feature/Feature_edit.vue
+
1
−
1
View file @
8251b929
...
...
@@ -929,7 +929,7 @@ export default {
setTimeout
(
function
()
{
let
project_id
=
this
.
$route
.
params
.
slug
.
split
(
"
-
"
)[
0
];
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
/
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
mapUtil
.
addVectorTileLayer
(
mvtUrl
,
...
...
This diff is collapsed.
Click to expand it.
src/views/feature/Feature_list.vue
+
1
−
1
View file @
8251b929
...
...
@@ -395,7 +395,7 @@ export default {
setTimeout
(
function
()
{
let
project_id
=
this
.
$route
.
params
.
slug
.
split
(
'
-
'
)[
0
];
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
/
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
mapUtil
.
addVectorTileLayer
(
mvtUrl
,
this
.
$route
.
params
.
slug
,
this
.
$store
.
state
.
feature_type
.
feature_types
,
this
.
form
);
mapUtil
.
addGeocoders
(
this
.
$store
.
state
.
configuration
);
}.
bind
(
this
),
...
...
This diff is collapsed.
Click to expand it.
src/views/project/Project_detail.vue
+
1
−
1
View file @
8251b929
...
...
@@ -649,7 +649,7 @@ export default {
let
self
=
this
;
this
.
checkForOfflineFeature
();
let
project_id
=
this
.
$route
.
params
.
slug
.
split
(
'
-
'
)[
0
];
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
/
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
const
mvtUrl
=
`
${
this
.
$store
.
state
.
configuration
.
VUE_APP_DJANGO_API_BASE
}
features.mvt/?tile={z}/{x}/{y}&project_id=
${
project_id
}
`
;
mapUtil
.
addVectorTileLayer
(
mvtUrl
,
this
.
$route
.
params
.
slug
,
this
.
$store
.
state
.
feature_type
.
feature_types
);
axios
.
get
(
url
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment