-
Notifications
You must be signed in to change notification settings - Fork 44
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
Extra elipsis when displaying a single-event EventSet #410
Comments
I think this is happening due to : # Create ellipsis row between first half and last half if more than max_timestamps entries
table.appendChild(html_table_row(dom, row))
if (
timestamp_idx == ((max_timestamps // 2) - 1)
and num_timestamps > max_timestamps
) or (max_timestamps == 1): # THIS IS CREATING THE ELLIPSE
ellipsis_row = [ELLIPSIS] * (
1 + len(visible_feats) + int(has_hidden_feats)
)
table.appendChild(html_table_row(dom, ellipsis_row)) at here: def display_html. Maybe we can do |
Yes, the (num_timestamps > max_timestamps) and ( (timestamp_idx == ((max_timestamps // 2) - 1)) or (max_timestamps == 1) ) and I feel that the last 2 conditions linked by the |
Can you tell me how to run |
you can install jupyter bypassing the pyproject.toml with |
In this case the ellipsis (
...
) should not be displayedThe text was updated successfully, but these errors were encountered: