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
!397
Fix account-deletion dialog
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix account-deletion dialog
400-the-session-dialog-is-not-scrollable
into
master
Overview
1
Commits
3
Pipelines
3
Changes
5
Merged
Lukas Mauß
requested to merge
400-the-session-dialog-is-not-scrollable
into
master
5 years ago
Overview
1
Commits
3
Pipelines
3
Changes
2
Expand
Solves scrolling problems
Show sessions as bullet list
Sort list by session name
Closes
#400 (closed)
,
#399 (closed)
,
#398 (closed)
Edited
5 years ago
by
Lukas Mauß
0
0
Merge request reports
Viewing commit
a7094a7a
Prev
Next
Show latest version
2 files
+
4
−
4
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
a7094a7a
Show a bullet list instead of numeration
· a7094a7a
Lukas Mauß
authored
5 years ago
src/app/components/shared/_dialogs/delete-account/delete-account.component.html
+
3
−
3
Options
@@ -2,9 +2,9 @@
<h3>
{{ 'header.sure' | translate }}
</h3>
<mat-divider></mat-divider>
<p>
{{ 'header.really-delete-account' | translate }}
</p>
<
mat-list
*ngFor=
"let room of rooms
; let i = index
"
>
<
mat-list-item><strong>
{{ i + 1 }}: {{ room.name }}
</strong></mat-list-item
>
</
mat-list
>
<
ul
*ngFor=
"let room of rooms"
>
<
li>
{{ room.name }}
</li
>
</
ul
>
<div
fxLayout=
"row"
fxLayoutAlign=
"center"
fxLayoutGap=
"10px"
>
<button
mat-raised-button
class=
"abort"
(click)=
"close('abort')"
>
{{ 'header.abort' | translate }}