You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result is a table list (a list with multiple tables), it has a magnifier glass icon but it cannot be viewed
result_table
To Reproduce
Steps to reproduce the behavior:
from astroquery.vizier import Vizier
result = Vizier.query_object("Sirius")
from astroquery.simbad import Simbad
result_table = Simbad.query_object("vega")
Expected behavior
A clear and concise description of what you expected to happen.
astropy table should be displayed as this:
with no Ellipsis ...
table list should be displayed as a list which every item can be clicked in as a table to view
Screenshots
If applicable, add screenshots to help explain your problem.
Your Environment(please complete the following information):
OS (important): ArchLinux
Browser Firefox
Version of this extension you are using 3.2.1
Additional context
Add any other context about the problem here.
create a table like this:
from astropy.table import QTable
import astropy.units as u
import numpy as np
a = np.array([1, 4, 5], dtype=np.int32)
b = [2.0, 5.0, 8.5]
c = ['x', 'y', 'z']
d = [10, 20, 30] * u.m / u.s
t = QTable([a, b, c, d],
names=('a', 'b', 'c', 'd'),
meta={'name': 'first table'})
and you can check the viewing of variable Inspector
The text was updated successfully, but these errors were encountered:
Describe the bug
result is a table list (a list with multiple tables), it has a magnifier glass icon but it cannot be viewed
result_table
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
astropy table should be displayed as this:
with no Ellipsis
...
table list should be displayed as a list which every item can be clicked in as a table to view
Screenshots
If applicable, add screenshots to help explain your problem.
Your Environment(please complete the following information):
Additional context
Add any other context about the problem here.
create a table like this:
and you can check the viewing of variable Inspector
The text was updated successfully, but these errors were encountered: