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
!257
Improve comment-list view + 2 bug fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Improve comment-list view + 2 bug fixes
288-do-not-display-search-input-if-there-are-no-comments-yet
into
master
Overview
6
Commits
4
Pipelines
2
Changes
9
All threads resolved!
Hide all comments
Merged
Lukas Mauß
requested to merge
288-do-not-display-search-input-if-there-are-no-comments-yet
into
master
5 years ago
Overview
6
Commits
4
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Expand
Comment-list view
- Display search bar only if comments exist
- If there are no comments yet, show only a big add-button
- Change sorting for participants to by time
General
- Show time in header only on desktop devices
- Fix carets/placeholder in several input fields
Closes
#288 (closed)
Edited
5 years ago
by
Lukas Mauß
0
0
Merge request reports
Viewing commit
02eed8ac
Prev
Next
Show latest version
1 file
+
1
−
1
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
02eed8ac
Show time only on desktop devices
· 02eed8ac
Lukas Mauß
authored
5 years ago
src/app/components/shared/header/header.component.html
+
1
−
1
Options
@@ -5,7 +5,7 @@
<mat-icon
class=
"header-icons"
aria-label=
"Go back"
>
keyboard_arrow_left
</mat-icon>
</button>
<span
class=
"fill-remaining-space"
></span>
<h3
*ngIf=
"router.url.includes('comments') && user.role === 1"
fxLayoutAlign=
"center center"
>
<h3
*ngIf=
"router.url.includes('comments') && user.role === 1
&& deviceType === 'desktop'
"
fxLayoutAlign=
"center center"
>
<mat-icon>
access_time
</mat-icon>
{{cTime}}
</h3>