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
Logging this as an AdminUI issue as it is not reproducible with crash
CrateDB version
5.4.0
Steps to Reproduce
CREATETABLEadminuiissue (o OBJECT,descr TEXT);
INSERT INTO adminuiissue(o,descr) SELECT {},'This is another one'FROM generate_series(1,17);
INSERT INTO adminuiissue(o,descr) SELECT {},'Something else'FROM generate_series(1,81);
INSERT INTO adminuiissue(o,descr) SELECT'{"tschritter":{},"code":"abcde1","tz":"Europe","shifts":[],"assignees":{},"language":"de","id":123,"plant_key":"abcde1","stations":{}}','Look at this record';
-- From the AdminUISELECT*FROM adminuiissue ORDER BY descr ASC;
-- Expand the o object for "Look at this record", note there is data in thereSELECT*FROM adminuiissue ORDER BY descr DESC;
-- Go to the bottom of the second page of results -- expand the o object for "Look at this record"-- note there is NO data in there
The text was updated successfully, but these errors were encountered:
but for some reason <formatted-object object="column.value" expand="false"></formatted-object> does not get the value when paginated, it never makes it to the scope:
Banging my head over this wall once again, same results, for some reason the data exists in the loop that creates the elements, but it never makes it to the element's scope. It is like if you call a function with a parameter, the parameter exists before calling the function, but then inside the function scope there parameter is None, makes no sense, no idea why angularjs is doing this dark magic.
I tried to test old versions, I managed to build until 231b863 (1.19.0 - 07/13/21) and the issue still persists, cannot build older since npm/node will just blow up.
Logging this as an AdminUI issue as it is not reproducible with
crash
CrateDB version
5.4.0
Steps to Reproduce
The text was updated successfully, but these errors were encountered: