Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
105d7907
Commit
105d7907
authored
May 17, 2018
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix "Cannot read property 'scrollLeft' of undefined" in threads
parent
ecf99dd6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
package-lock.json
spring-boot-admin-server-ui/package-lock.json
+0
-0
threads-list.vue
...main/frontend/views/instances/threaddump/threads-list.vue
+1
-1
No files found.
spring-boot-admin-server-ui/package-lock.json
View file @
105d7907
This diff is collapsed.
Click to expand it.
spring-boot-admin-server-ui/src/main/frontend/views/instances/threaddump/threads-list.vue
View file @
105d7907
...
...
@@ -183,7 +183,7 @@
},
isInView
(
xPos
)
{
const
scrollable
=
this
.
$el
;
return
xPos
>=
scrollable
.
scrollLeft
&&
xPos
<=
scrollable
.
scrollLeft
+
scrollable
.
clientWidth
;
return
scrollable
&&
xPos
>=
scrollable
.
scrollLeft
&&
xPos
<=
(
scrollable
.
scrollLeft
+
scrollable
.
clientWidth
)
;
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment