Gitlab Community Edition Instance
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
!247
Resolve "Update Vuetify"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Update Vuetify"
250-update-vuetify
into
master
Overview
2
Commits
60
Pipelines
32
Changes
70
Merged
Jakob Dieterle
requested to merge
250-update-vuetify
into
master
4 years ago
Overview
2
Commits
60
Pipelines
32
Changes
1
Expand
Closes
#250 (closed)
Edited
4 years ago
by
Thilo Wischmeyer
0
0
Merge request reports
Compare
version 5
version 30
c7263f41
4 years ago
version 29
14fd464f
4 years ago
version 28
67d0dc83
4 years ago
version 27
2b51b823
4 years ago
version 26
e667d050
4 years ago
version 25
406f01a2
4 years ago
version 24
849a583d
4 years ago
version 23
a973adbd
4 years ago
version 22
58308f53
4 years ago
version 21
fe661f21
4 years ago
version 20
b643fb89
4 years ago
version 19
63648144
4 years ago
version 18
da5f5d46
4 years ago
version 17
3eb9a44c
4 years ago
version 16
9fb220c3
4 years ago
version 15
8bab1c75
4 years ago
version 14
a8414800
4 years ago
version 13
9de2c8cf
4 years ago
version 12
70f91a57
4 years ago
version 11
2fd31125
4 years ago
version 10
4e5255cd
4 years ago
version 9
d36890a4
4 years ago
version 8
e4858231
4 years ago
version 7
976a794f
4 years ago
version 6
f755bda4
4 years ago
version 5
6c3b133d
4 years ago
version 4
52c8fb8c
4 years ago
version 3
92b5e676
4 years ago
version 2
27df6d7c
4 years ago
version 1
c393daa8
4 years ago
master (base)
and
version 6
latest version
6af43d11
60 commits,
4 years ago
version 30
c7263f41
59 commits,
4 years ago
version 29
14fd464f
59 commits,
4 years ago
version 28
67d0dc83
58 commits,
4 years ago
version 27
2b51b823
57 commits,
4 years ago
version 26
e667d050
56 commits,
4 years ago
version 25
406f01a2
55 commits,
4 years ago
version 24
849a583d
54 commits,
4 years ago
version 23
a973adbd
51 commits,
4 years ago
version 22
58308f53
50 commits,
4 years ago
version 21
fe661f21
49 commits,
4 years ago
version 20
b643fb89
49 commits,
4 years ago
version 19
63648144
48 commits,
4 years ago
version 18
da5f5d46
47 commits,
4 years ago
version 17
3eb9a44c
44 commits,
4 years ago
version 16
9fb220c3
41 commits,
4 years ago
version 15
8bab1c75
40 commits,
4 years ago
version 14
a8414800
35 commits,
4 years ago
version 13
9de2c8cf
34 commits,
4 years ago
version 12
70f91a57
33 commits,
4 years ago
version 11
2fd31125
32 commits,
4 years ago
version 10
4e5255cd
31 commits,
4 years ago
version 9
d36890a4
29 commits,
4 years ago
version 8
e4858231
26 commits,
4 years ago
version 7
976a794f
25 commits,
4 years ago
version 6
f755bda4
23 commits,
4 years ago
version 5
6c3b133d
22 commits,
4 years ago
version 4
52c8fb8c
19 commits,
4 years ago
version 3
92b5e676
19 commits,
4 years ago
version 2
27df6d7c
17 commits,
4 years ago
version 1
c393daa8
16 commits,
4 years ago
Show latest version
1 file
+
14
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
frontend/src/components/feedback_list/FeedbackTable.vue
+
14
−
21
Options
@@ -6,29 +6,27 @@
<v-data-table
:headers=
"headers"
:items=
"filteredFeedback"
sort-by=
"student"
>
<template
slot=
"
top
"
>
<template
#
top
>
<feedback-search-options
v-model=
"searchOptions"
/>
</
template
>
<
template
slot=
"items"
slot-scope=
"props"
>
<
template
#item=
"{ item }"
>
<tr
class=
"feedback-row"
@
click=
"showSubmission(
props.item.ofSubmission
)"
@
click=
"showSubmission(
item
)"
>
<td>
{{
props
.
item
.
ofSubmissionType
}}
</td>
<td>
{{
item
.
ofSubmissionType
}}
</td>
<td
v-if=
"exerciseMode"
>
{{
props
.
item
.
ofStudent
}}
{{
item
.
ofStudent
}}
</td>
<td>
{{
props
.
item
.
score
}}
</td>
<td>
{{
new
Date
(
props
.
item
.
created
).
toLocaleString
()
}}
</td>
<td>
{{
new
Date
(
props
.
item
.
modified
).
toLocaleString
()
}}
</td>
<td>
{{
item
.
score
}}
</td>
<td>
{{
new
Date
(
item
.
created
).
toLocaleString
()
}}
</td>
<td>
{{
new
Date
(
item
.
modified
).
toLocaleString
()
}}
</td>
<td>
<v-icon
v-if=
"
props.
item.isFinal"
>
<v-icon
v-if=
"item.isFinal"
>
check
</v-icon>
<v-icon
v-else
>
@@ -38,8 +36,8 @@
<td>
<v-btn
icon
:color=
"
props.
item.mark"
@
click=
"changeMark(
props.
item.ofSubmission,
props.
item.mark)"
:color=
"item.mark"
@
click=
"changeMark(item.ofSubmission, item.mark)"
/>
</td>
</tr>
@@ -177,13 +175,8 @@ export default class FeedbackTable extends Vue {
})
}
pagination
=
{
sortBy
:
'
student
'
,
rowsPerPage
:
25
}
showSubmission
(
submissionPk
:
string
)
{
this
.
$router
.
push
(
`/feedback/
${
submissionPk
}
`
)
showSubmission
(
feedback
:
Feedback
)
{
this
.
$router
.
push
(
`/feedback/
${
feedback
.
ofSubmission
}
`
)
}
changeMark
(
submissionPk
:
string
,
currColor
:
string
)
{
Loading