Neo4j Browser Table View misaligns columns when returning multiple values

Hi team,
I've been experiencing a persistent issue in Neo4j Browser over the past few days. When I run queries that return multiple values (e.g., counts from subqueries), the Table view misaligns the columns โ€” values appear stacked under one column instead of being properly distributed across their respective headers.
Here's an example query:

CALL {
  MATCH ()-[r:TAGGED]->()
  RETURN count(r) AS tagged
}
WITH tagged
CALL {
  MATCH ()-[r:LIKED]->()
  RETURN count(r) AS liked
}
WITH tagged, liked
CALL {
  MATCH ()-[r:RECEBEU]->()
  RETURN count(r) AS recebeu
}
RETURN tagged, liked, recebeu
tagged liked recebeu
35408 576 94674

Actual output: All values appear under the "tagged" column, and the other columns are empty.
I've tested this on multiple browsers (Chrome, Firefox), cleared cache/cookies, and even tried incognito mode โ€” same result. This issue did not happen before, so I suspect it may be related to a recent update in Neo4j Browser.
Any guidance or fix would be appreciated!

Thanks in advance,
Edmundo

@eddmundosjb

Are you able to provide more details.

What version of Neo4j ?

Can you provide a screenshot of the browser experience?
From within the browser and and from the left frame there should be a gears icon which includes details of the Browser Version. Can you reply back with this as well?

An error occurred: Sorry, new users can only put one embedded media item in a post.

:index_pointing_up:

Sorry, but due to a block on this platform I can't add screenshots, so I'll only post what I can:

Version: Neo4j AuraDBFree 2025.10

Chrome is up to date

Version 142.0.7444.60 (Official version) 64-bit

If there are no problems with that as well (accessing the screenshots via link), here's a link to my Google Drive :backhand_index_pointing_down:

Google Browser Version:

https://drive.google.com/file/d/15xc4vd2QVRfjkdCiEEus9J9B8Sk69swb/view?usp=sharing

@eddmundosjb

Thanks. i was able to reproduce but only when using a Aura instance. A locally installed instance is reporting correct results. I have forwarded to our Browser Team engineers to further investigate

Neo4j Version: Version:

2025.10 (AuraDB Free)

Thank you for looking into this so promptly. It's helpful to know the issue only occurs with Aura and not with a local instance. I appreciate you escalating it to the Browser Team โ€” looking forward to any updates they uncover.
Let me know if you'd like a more formal or more casual version!

Just a note, you could use the collect subquery to simplify the query. I find it more readable too.

RETURN
COUNT { ()-[:TAGGED]->() } AS tagged,
COUNT { ()-[:LIKED]->() } AS liked,
COUNT { ()-[:RECEBEU]->() } AS recebeu

@eddmundosjb

we recently pushed a fix in last 12 hours. Can you please rerun and let us know if this is thus resolved

Wow, glilienfield!

Good morning! Well, good morning here in Brazil, haha!

Golden tip! Thank you!

It avoids, for a quick query, which was my intention, the complexity of a CALL structure!

Hi, dana_canzano!

Thank you so much!

It's working perfectly.

Thank you for the quick response, and for your care for the user!

Ah! And now I can add images to the answer, yay! :hugs::hugs::hugs::hugs::hugs:

Wow, glilienfield!

Good morning! Well, good morning here in Brazil, haha!

Golden tip! Thank you!

It avoids, for a quick query, which was my intention, the complexity of a CALL structure!