Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchParapheur
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
Maarch
MaarchParapheur
Commits
7b3428b3
Commit
7b3428b3
authored
4 years ago
by
Alex ORLUC
Browse files
Options
Downloads
Patches
Plain Diff
FIX #15550 TIME 0:20 fix scroll sidebar
parent
0e6c6798
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/frontend/app/sidebar/sidebar.component.html
+1
-1
1 addition, 1 deletion
src/frontend/app/sidebar/sidebar.component.html
src/frontend/app/sidebar/sidebar.component.ts
+3
-3
3 additions, 3 deletions
src/frontend/app/sidebar/sidebar.component.ts
with
4 additions
and
4 deletions
src/frontend/app/sidebar/sidebar.component.html
+
1
−
1
View file @
7b3428b3
...
@@ -95,7 +95,7 @@
...
@@ -95,7 +95,7 @@
</ion-item>
</ion-item>
</ion-menu-toggle>
</ion-menu-toggle>
</ion-list>
</ion-list>
<ion-infinite-scroll
threshold=
"100px"
(ionInfinite)=
"loadData($event)"
>
<ion-infinite-scroll
threshold=
"100px"
(ionInfinite)=
"loadData($event)"
*ngIf=
"signaturesService.documentsList.length > 0"
>
<ion-infinite-scroll-content
loadingSpinner=
"bubbles"
loadingText=
"Loading more data..."
>
<ion-infinite-scroll-content
loadingSpinner=
"bubbles"
loadingText=
"Loading more data..."
>
</ion-infinite-scroll-content>
</ion-infinite-scroll-content>
</ion-infinite-scroll>
</ion-infinite-scroll>
...
...
This diff is collapsed.
Click to expand it.
src/frontend/app/sidebar/sidebar.component.ts
+
3
−
3
View file @
7b3428b3
import
{
Component
,
OnInit
,
ElementRef
,
ViewChild
,
Input
}
from
'
@angular/core
'
;
import
{
Component
,
OnInit
,
ElementRef
,
ViewChild
}
from
'
@angular/core
'
;
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
Router
,
ActivatedRoute
}
from
'
@angular/router
'
;
import
{
Router
,
ActivatedRoute
}
from
'
@angular/router
'
;
import
{
MatSidenav
}
from
'
@angular/material/sidenav
'
;
import
{
SignaturesContentService
}
from
'
../service/signatures.service
'
;
import
{
SignaturesContentService
}
from
'
../service/signatures.service
'
;
import
{
NotificationService
}
from
'
../service/notification.service
'
;
import
{
NotificationService
}
from
'
../service/notification.service
'
;
import
{
FormControl
}
from
'
@angular/forms
'
;
import
{
FormControl
}
from
'
@angular/forms
'
;
...
@@ -25,7 +24,7 @@ export class SidebarComponent implements OnInit {
...
@@ -25,7 +24,7 @@ export class SidebarComponent implements OnInit {
@
ViewChild
(
'
listContent
'
)
listContent
:
ElementRef
;
@
ViewChild
(
'
listContent
'
)
listContent
:
ElementRef
;
@
ViewChild
(
'
searchInput
'
)
searchInput
:
ElementRef
;
@
ViewChild
(
'
searchInput
'
)
searchInput
:
ElementRef
;
searchTerm
:
FormControl
=
new
FormControl
();
searchTerm
:
FormControl
=
new
FormControl
();
constructor
(
constructor
(
...
@@ -102,6 +101,7 @@ export class SidebarComponent implements OnInit {
...
@@ -102,6 +101,7 @@ export class SidebarComponent implements OnInit {
}
}
filter
(
mode
:
string
)
{
filter
(
mode
:
string
)
{
this
.
signaturesService
.
documentsList
=
[];
if
(
mode
!==
''
)
{
if
(
mode
!==
''
)
{
this
.
searchMode
=
false
;
this
.
searchMode
=
false
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment