Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
grady
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Jan Maximilian Michal
grady
Merge requests
!150
Resolve "subscription ended on submit"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "subscription ended on submit"
139-subscription-ended-on-submit
into
master
Overview
0
Commits
3
Pipelines
15
Changes
3
Merged
Dominik Seeger
requested to merge
139-subscription-ended-on-submit
into
master
6 years ago
Overview
0
Commits
3
Pipelines
15
Changes
3
Expand
Closes
#139 (closed)
Edited
6 years ago
by
Dominik Seeger
0
0
Merge request reports
Viewing commit
f72ad9c7
Show latest version
3 files
+
27
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
f72ad9c7
subscription ended message clarification
· f72ad9c7
Dominik Seeger
authored
6 years ago
frontend/src/components/subscriptions/SubscriptionEnded.vue
+
19
−
6
Options
<
template
>
<v-card
class=
"mx-auto center-page"
id=
"subscription-ended"
>
<v-card-title
class=
"title"
>
It seems like your subscription has (temporarily) ended.
No submissions left
</v-card-title>
<v-card-text>
If you've been validating feedback or resolving conflicts those subscriptions might become active again.
<br/>
If that happens they'll become clickable in the sidebar.
All submissions for
<b>
{{
submissionTypeName
()
}}
</b>
in the current stage have been corrected. If you've
been validating feedback or
<br/>
resolving conflicts some submissions may become active again.
If that is the case they will appear clickable in the sidebar again.
</v-card-text>
<v-card-actions
class=
"text-xs-center"
>
<v-btn
to=
"/home"
>
@@ -18,10 +20,21 @@
</v-card>
</
template
>
<
script
>
export
default
{
name
:
'
subscription-ended
'
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
import
Component
from
'
vue-class-component
'
import
store
from
'
@/store/store
'
@
Component
export
default
class
SubscriptionEnded
extends
Vue
{
get
submissionTypes
()
{
return
store
.
state
.
submissionTypes
}
submissionTypeName
()
{
return
this
.
submissionTypes
[
this
.
$route
.
params
.
typePk
].
name
}
}
</
script
>
<
style
scoped
>
Loading