Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Merge requests
!139
An error occurred while fetching the assigned milestone of the selected merge_request.
Resolve "Various improvements"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Various improvements"
196-various-improvements
into
master
Overview
0
Commits
24
Pipelines
2
Changes
26
Merged
Lukas Mauß
requested to merge
196-various-improvements
into
master
6 years ago
Overview
0
Commits
24
Pipelines
2
Changes
26
Expand
Closes
#196 (closed)
0
0
Merge request reports
Compare
master
version 1
e79b01a4
6 years ago
master (base)
and
latest version
latest version
760b1e0d
24 commits,
6 years ago
version 1
e79b01a4
23 commits,
6 years ago
26 files
+
174
−
273
Expand all files
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
Search (e.g. *.vue) (Ctrl+P)
src/app/components/creator/content-list/content-list.component.html
+
5
−
4
Options
@@ -34,16 +34,17 @@
@@ -34,16 +34,17 @@
</mat-grid-list>
</mat-grid-list>
<mat-divider></mat-divider>
<mat-divider></mat-divider>
<mat-card-content>
<mat-card-content>
<mat-expansion-panel
*ngFor=
"let content of contents"
>
<mat-expansion-panel
*ngFor=
"let content of contents
; index as i
"
>
<mat-expansion-panel-header>
<mat-expansion-panel-header>
<mat-panel-title>
<mat-panel-title>
{{
content.subject
}}
{{
labels[i]
}}
</mat-panel-title>
</mat-panel-title>
<button
mat-icon-button
color=
"accent"
(click)=
"editContent(content);$event.stopPropagation();"
>
<button
mat-icon-button
color=
"accent"
(click)=
"editContent(content);$event.stopPropagation();"
class=
"editButton"
>
<mat-icon>
create
</mat-icon>
<mat-icon>
create
</mat-icon>
</button>
</button>
<button
mat-icon-button
color=
"warn"
(click)=
"deleteContent(content);$event.stopPropagation();"
<button
mat-icon-button
color=
"warn"
(click)=
"deleteContent(content);$event.stopPropagation();"
class=
"deleteButton"
>
class=
"deleteButton
editButton
"
>
<mat-icon>
delete_forever
</mat-icon>
<mat-icon>
delete_forever
</mat-icon>
</button>
</button>
</mat-expansion-panel-header>
</mat-expansion-panel-header>