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
Merge requests
!37
fix notification msg
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix notification msg
ticket/11756
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Leandro Almada
requested to merge
ticket/11756
into
develop
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
5a84b81d
1 commit,
3 years ago
1 file
+
22
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/views/project/Project_detail.vue
+
22
−
1
Options
@@ -9,6 +9,16 @@
<p><i
class=
"check icon"
></i>
{{
tempMessage
}}
</p>
</div>
</div>
<div
id=
"message_info"
class=
"fullwidth"
>
<div
v-if=
"infoMessage"
class=
"ui info message"
style=
"text-align: left;"
>
<div
class=
"header"
>
<i
class=
"info circle icon"
></i>
Informations
</div>
<ul
class=
"list"
>
{{
infoMessage
}}
</ul>
</div>
</div>
<div
class=
"row"
>
<div
class=
"four wide middle aligned column"
>
@@ -456,6 +466,7 @@ export default {
data
()
{
return
{
infoMessage
:
''
,
geojsonImport
:
[],
fileToImport
:
{
name
:
""
,
size
:
0
},
slug
:
this
.
$route
.
params
.
slug
,
@@ -517,7 +528,17 @@ export default {
suscribe
:
!
this
.
is_suscriber
,
projectSlug
:
this
.
$route
.
params
.
slug
,
})
.
then
((
data
)
=>
(
this
.
is_suscriber
=
data
.
is_suscriber
));
.
then
((
data
)
=>
{
this
.
is_suscriber
=
data
.
is_suscriber
;
this
.
isModalOpen
=
false
;
if
(
this
.
is_suscriber
)
this
.
infoMessage
=
'
Vous êtes maintenant abonné aux notifications de ce projet.
'
;
else
this
.
infoMessage
=
"
Vous ne recevrez plus les notifications de ce projet.
"
;
setTimeout
(
function
(){
this
.
infoMessage
=
''
;
}.
bind
(
this
),
3000
);
});
},
},
created
()
{
Loading