Issues Displaying Data in a Repeating Group on Bubble

Hello everyone,

I am currently working on a Bubble app and encountering an issue with displaying data in a Repeating Group. The Repeating Group is supposed to show data from a linked list of ratings associated with an evaluation, but the texts and values are not being displayed as expected.

Details:

Page: Evaluation Page

Objective To display rating titles and other details in a Repeating Group pulled from the Evaluation database.

Problem: The Repeating Group is either showing incorrect data or just placeholder texts like “Lorem Ipsum…”.

Data Structure:
The Evaluation database includes a field Ratings, which is a list of ratings.
Each Rating entity has fields such as Title, Score, and Note.

Current Configuration:

The Data source of the Repeating Group is set to Current page's Evaluation's Ratings.
Each element in the Repeating Group is set to pull data from Parent group's Rating.

Troubleshooting Attempts:

-Checked the data source and bindings in the Repeating Group.
-Ensured that the Evaluation actually contains Ratings.
-Tested with fixed data values to check functionality.

Despite these measures, the data is either not displayed at all or displayed incorrectly. I have checked all privacy rules and visibility settings, and everything appears to be configured correctly.

Does anyone have any suggestions on what might be going wrong or what steps I could try to resolve this issue?

My guess is that I made a mistake with the Database linking, but I can’t find one.

Here’s an additional screenshot of the website. There should actually be 6 elements displayed instead of 2. At the bottom of each element, there is a number that is stored in the “Ratings” (currently set to 0 everywhere). I also have 6 different titles, but nowhere have I entered “Lorem ipsum…”. If you need more information, just let me know what exactly. THANK YOU!

Thank you in advance for your help!

The “Lorem ipsum” appears because your page is of the type: Evaluation Page, this makes it a dynamic page and when loaded, if no data is sent, the lorem text is displayed.

Remove the “Evaluation” type from your page and place it in the content type of your repeating group. In the data source, “do a search for” Evaluation. This will fetch all results from the database.
Each element in the repeating group: current cell’s Evaluation.

I hope this was clear to you and that it may have helped you in some way.