mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
chore(translations): fix translation literals (#17501)
* chore(translations): fix translation literals * fix table name types and translations * fix lint * join concat'd messages
This commit is contained in:
@@ -148,7 +148,9 @@ export default class SqlEditorLeftBar extends React.PureComponent {
|
||||
transform: rotate(90deg);
|
||||
`}
|
||||
aria-label="Collapse"
|
||||
tooltip={t(`${isActive ? 'Collapse' : 'Expand'} table preview`)}
|
||||
tooltip={
|
||||
isActive ? t('Collapse table preview') : t('Expand table preview')
|
||||
}
|
||||
>
|
||||
<Icons.RightOutlined
|
||||
iconSize="s"
|
||||
|
||||
Reference in New Issue
Block a user