-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
WebUI: Enable virtual list for all tables #23544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
e536f7f to
a41c1a2
Compare
a41c1a2 to
3b97a4f
Compare
| setupVirtualList() { | ||
| super.setupVirtualList(); | ||
| this.rowHeight = 35; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| } | |
| } | |
| let statusImg; | ||
| switch (status) { | ||
| case "default": | ||
| statusImg = "images/application-rss.svg"; | ||
| break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| let statusImg; | |
| switch (status) { | |
| case "default": | |
| statusImg = "images/application-rss.svg"; | |
| break; | |
| let statusImg = "images/application-rss.svg"; | |
| switch (status) { |
|
|
||
| td.style.overflow = "visible"; | ||
| const indentation = row.full_data.indentation; | ||
| td.style.paddingLeft = `${indentation * 32 + 4}px`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| td.style.paddingLeft = `${indentation * 32 + 4}px`; | |
| td.style.paddingLeft = `${(indentation * 32) + 4}px`; |
| td.title = value; | ||
|
|
||
| const indentation = row.full_data.indentation; | ||
| td.style.paddingLeft = `${indentation * 32 + 4}px`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| td.style.paddingLeft = `${indentation * 32 + 4}px`; | |
| td.style.paddingLeft = `${(indentation * 32) + 4}px`; |
Enabled virtual list for RSS and search engine tables.
CC @Piccirello