Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b4af5106
Commit
b4af5106
authored
May 18, 2020
by
lauraMon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates column key to match backend sort
parent
f2f5b0e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
app/assets/javascripts/alert_management/components/alert_management_list.vue
...pts/alert_management/components/alert_management_list.vue
+5
-5
No files found.
app/assets/javascripts/alert_management/components/alert_management_list.vue
View file @
b4af5106
...
...
@@ -44,13 +44,13 @@ export default {
sortable
:
true
,
},
{
key
:
'
start
edAt
'
,
key
:
'
start
Time
'
,
label
:
s__
(
'
AlertManagement|Start time
'
),
tdClass
,
sortable
:
true
,
},
{
key
:
'
end
edAt
'
,
key
:
'
end
Time
'
,
label
:
s__
(
'
AlertManagement|End time
'
),
tdClass
,
sortable
:
true
,
...
...
@@ -60,7 +60,6 @@ export default {
label
:
s__
(
'
AlertManagement|Alert
'
),
thClass
:
'
w-30p
'
,
tdClass
,
sortable
:
true
,
},
{
key
:
'
eventCount
'
,
...
...
@@ -128,6 +127,7 @@ export default {
return
{
projectPath
:
this
.
projectPath
,
statuses
:
this
.
statusFilter
,
sort
:
this
.
sort
,
};
},
update
(
data
)
{
...
...
@@ -258,11 +258,11 @@ export default {
</div>
</
template
>
<
template
#cell(start
edAt
)=
"{ item }"
>
<
template
#cell(start
Time
)=
"{ item }"
>
<time-ago
v-if=
"item.startedAt"
:time=
"item.startedAt"
/>
</
template
>
<
template
#cell(end
edAt
)=
"{ item }"
>
<
template
#cell(end
Time
)=
"{ item }"
>
<time-ago
v-if=
"item.endedAt"
:time=
"item.endedAt"
/>
</
template
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment