finos / waltz

Enterprise Information Service
https://waltz.finos.org
Apache License 2.0
182 stars 129 forks source link

Report Grid Bug #7181

Open nitin-bhagwat opened 2 weeks ago

nitin-bhagwat commented 2 weeks ago

Description

It seems that there is a bug in the report grid section. After creating the report grid, I am no longer able to edit the report grid. There is a lock icon present in the column editor and the people editor section which says that I am not an owner of this report, even though I am the owner of this report. Not sure why this is coming.

image

Waltz Version

1.62

Steps to Reproduce

  1. Create a report grid and save it
  2. Navigate to a different page and then go back to the report grid section again
  3. Check whether you're able to edit the report grid using "Column Editor" or "People Editor"

Expected Result

No response

Actual Result

No response

davidwatkins73 commented 1 week ago

Could you check the permissions assigned to the grid in the database ? You can use the external id (shown on the grid overview) with the following query to check the database:

select rg.name, rgm.user_id, rgm.role
from report_grid rg
inner join report_grid_member rgm on rg.id = rgm.grid_id
where rg.external_id = 'a01269ae-9f4e-45cd-8355-c9ef0ccb50be'

e.g. image

The user id should match your logged in user_id, e.g. whatever is shown in the profile menu:

image

nitin-bhagwat commented 1 week ago

Yes I checked it. I am the owner and the user id is also matching. Sharing few more snapshots.

report-grid-1 report-grid

The issue remains the same even when both the user_ids are same.