diff --git a/ee/api/test/test_dashboard_collaborators.py b/ee/api/test/test_dashboard_collaborators.py index c7be5f7cf5276..33b8a46843ae1 100644 --- a/ee/api/test/test_dashboard_collaborators.py +++ b/ee/api/test/test_dashboard_collaborators.py @@ -34,9 +34,11 @@ def test_list_collaborators_as_person_without_edit_access(self): response = self.client.get( f"/api/projects/{self.test_dashboard.team_id}/dashboards/{self.test_dashboard.id}/collaborators/" ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + response_data = response.json() + response_data = sorted(response_data, key=lambda entry: entry["user"]["email"]) - self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(len(response_data), 2) self.assertEqual(response_data[0]["user"]["email"], other_user_a.email) self.assertEqual(response_data[0]["level"], Dashboard.PrivilegeLevel.CAN_VIEW) diff --git a/frontend/src/scenes/insights/views/LineGraph/LineGraph.tsx b/frontend/src/scenes/insights/views/LineGraph/LineGraph.tsx index 44caebfe39d80..9c8922e4dbf4d 100644 --- a/frontend/src/scenes/insights/views/LineGraph/LineGraph.tsx +++ b/frontend/src/scenes/insights/views/LineGraph/LineGraph.tsx @@ -652,9 +652,9 @@ export function LineGraph_({ display: !hideYAxis, ...tickOptions, ...(yAxisScaleType !== 'log10' && { precision }), // Precision is not supported for the log scale - callback: (value) => { - return formatPercentStackAxisValue(trendsFilter, value, isPercentStackView) - }, + // callback: (value) => { + // return formatPercentStackAxisValue(trendsFilter, value, isPercentStackView) + // }, }, grid: gridOptions, type: yAxisScaleType === 'log10' ? 'logarithmic' : 'linear',