Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wotwizard-ui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Emmanuel Salomon
wotwizard-ui
Commits
081a13dd
Commit
081a13dd
authored
3 years ago
by
Emmanuel Salomon
Browse files
Options
Downloads
Patches
Plain Diff
Change path members/_hash to member?hash
parent
f4b9d6b3
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
components/certif/List.vue
+4
-4
4 additions, 4 deletions
components/certif/List.vue
components/member/List.vue
+1
-1
1 addition, 1 deletion
components/member/List.vue
pages/membre.vue
+6
-5
6 additions, 5 deletions
pages/membre.vue
pages/previsions/index.vue
+2
-2
2 additions, 2 deletions
pages/previsions/index.vue
with
13 additions
and
12 deletions
components/certif/List.vue
+
4
−
4
View file @
081a13dd
...
@@ -10,8 +10,8 @@
...
@@ -10,8 +10,8 @@
@
click=
"
@
click=
"
$router.push(
$router.push(
localePath(
{
localePath(
{
name: 'membre
s-hash
',
name: 'membre',
params
: { hash: certif.hash }
query
: { hash: certif.hash }
})
})
)
)
">
">
...
@@ -69,8 +69,8 @@
...
@@ -69,8 +69,8 @@
@
click=
"
@
click=
"
$router.push(
$router.push(
localePath(
{
localePath(
{
name: 'membre
s-hash
',
name: 'membre',
params
: { hash: certif.hash }
query
: { hash: certif.hash }
})
})
)
)
">
">
...
...
This diff is collapsed.
Click to expand it.
components/member/List.vue
+
1
−
1
View file @
081a13dd
...
@@ -116,7 +116,7 @@ export default {
...
@@ -116,7 +116,7 @@ export default {
methods
:
{
methods
:
{
redirect
(
hash
)
{
redirect
(
hash
)
{
this
.
$router
.
push
(
this
.
$router
.
push
(
this
.
localePath
({
name
:
"
membre
s-hash
"
,
params
:
{
hash
}
})
this
.
localePath
({
name
:
"
membre
"
,
query
:
{
hash
}
})
)
)
},
},
sort
(
s
)
{
sort
(
s
)
{
...
...
This diff is collapsed.
Click to expand it.
pages/membre
s/_hash
.vue
→
pages/membre.vue
+
6
−
5
View file @
081a13dd
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<div
class=
"alert alert-danger"
v-if=
"error"
>
{{
error
}}
</div>
<div
class=
"alert alert-danger"
v-if=
"error"
>
{{
error
}}
</div>
</transition>
</transition>
<transition
name=
"fade"
>
<transition
name=
"fade"
>
<div
v-if=
"idFromHash"
>
<div
v-if=
"idFromHash
&& !$apollo.queries.idFromHash.loading
"
>
<div
class=
"container-md"
>
<div
class=
"container-md"
>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-lg-9 col-xl-8 mx-auto my-3"
>
<div
class=
"col-lg-9 col-xl-8 mx-auto my-3"
>
...
@@ -65,6 +65,7 @@
...
@@ -65,6 +65,7 @@
import
{
SEARCH_MEMBER
}
from
"
@/graphql/queries
"
import
{
SEARCH_MEMBER
}
from
"
@/graphql/queries
"
export
default
{
export
default
{
name
:
'
membre
'
,
data
()
{
data
()
{
return
{
return
{
breadcrumb
:
[
breadcrumb
:
[
...
@@ -112,7 +113,7 @@ export default {
...
@@ -112,7 +113,7 @@ export default {
idFromHash
:
{
idFromHash
:
{
query
:
SEARCH_MEMBER
,
query
:
SEARCH_MEMBER
,
variables
()
{
variables
()
{
return
{
hash
:
this
.
$route
.
params
.
hash
}
return
{
hash
:
this
.
$route
.
query
.
hash
}
},
},
error
(
err
)
{
error
(
err
)
{
this
.
error
=
err
.
message
this
.
error
=
err
.
message
...
@@ -121,9 +122,9 @@ export default {
...
@@ -121,9 +122,9 @@ export default {
},
},
nuxtI18n
:
{
nuxtI18n
:
{
paths
:
{
paths
:
{
fr
:
"
/membre
s/:hash
"
,
fr
:
"
/membre
"
,
en
:
"
/member
s/:hash
"
,
en
:
"
/member
"
,
es
:
"
/miembro
s/:hash
"
es
:
"
/miembro
"
}
}
},
},
computed
:
{
computed
:
{
...
...
This diff is collapsed.
Click to expand it.
pages/previsions/index.vue
+
2
−
2
View file @
081a13dd
...
@@ -54,8 +54,8 @@
...
@@ -54,8 +54,8 @@
@
click=
"
@
click=
"
$router.push(
$router.push(
localePath(
{
localePath(
{
name: 'membre
s-hash
',
name: 'membre',
params
: { hash: forecast.member.hash }
query
: { hash: forecast.member.hash }
})
})
)
)
">
">
...
...
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