artemonsh commented on code in PR #22150:
URL: https://github.com/apache/superset/pull/22150#discussion_r1053356421


##########
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:
##########
@@ -57,7 +58,7 @@ function setTooltipContent(formData) {
     return (
       <div className="deckgl-tooltip">
         {o.object.name && (
-          <TooltipRow label="name: " value={`${o.object.name}`} />
+          <TooltipRow label={t('name: ')} value={`${o.object.name}`} />

Review Comment:
   Totally agree



##########
superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx:
##########
@@ -259,9 +259,11 @@ function AnnotationList({
             <span>{t('Annotation Layer %s', annotationLayerName)}</span>
             <span>
               {hasHistory ? (
-                <Link to="/annotationlayer/list/">Back to all</Link>
+                <Link to="/annotationlayermodelview/list/">
+                  {t('Back to all')}
+                </Link>
               ) : (
-                <a href="/annotationlayer/list/">Back to all</a>
+                <a href="/annotationlayermodelview/list/">{t('Back to 
all')}</a>

Review Comment:
   I don't know how it happened :( Changed back.



-- 
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