Copilot commented on code in PR #36071:
URL: https://github.com/apache/superset/pull/36071#discussion_r2519382186


##########
superset-frontend/src/pages/DashboardList/index.tsx:
##########
@@ -118,12 +119,31 @@ const Actions = styled.div`
   color: ${({ theme }) => theme.colorIcon};
 `;
 
+const FlexRowContainer = styled.div`
+  align-items: center;
+  display: flex;
+  gap: ${({ theme }) => theme.sizeUnit}px;
+
+  a {
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    line-height: 1.2;
+  }
+
+  svg {
+    margin-right: ${({ theme }) => theme.sizeUnit}px;
+  }
+`;
+
+

Review Comment:
   Extra blank line detected. This line should be removed to maintain code 
consistency.
   ```suggestion
   
   ```



##########
superset-frontend/src/dashboard/actions/dashboardState.js:
##########
@@ -295,9 +295,11 @@ export function saveDashboardRequest(data, id, saveType) {
       owners,
       roles,
       slug,
+      description,
       tags,
     } = data;
 
+

Review Comment:
   Extra blank line detected. This line should be removed to maintain code 
consistency.
   ```suggestion
   
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to