Skip to content

Commit

Permalink
choe: errors fixes for the build
Browse files Browse the repository at this point in the history
  • Loading branch information
AndVK committed Oct 16, 2022
1 parent 9d9bfb8 commit cdc0d97
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export const ControlPanelsContainer = (props: ControlPanelsContainerProps) => {
{hasErrors && (
<Tooltip
id={`${kebabCase('validation-errors')}-tooltip`}
title={t("This section contains validation errors")}
title={t('This section contains validation errors')}
>
<Icons.InfoCircleOutlined
css={css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function PropertiesModal({
<Modal
show={show}
onHide={onHide}
title={t("Edit Chart Properties")}
title={t('Edit Chart Properties')}
footer={
<>
<Button
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/modules/AnnotationTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
import { t } from "@superset-ui/core";
import { t } from '@superset-ui/core';

function extractTypes(metadata) {
return Object.keys(metadata).reduce((prev, key) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
import React from 'react';
import { getDatabaseDocumentationLinks } from 'src/views/CRUD/hooks';
import { UploadFile } from 'antd/lib/upload/interface';
import { t } from '@superset-ui/core';
import {
EditHeaderTitle,
EditHeaderSubtitle,
StyledFormHeader,
StyledStickyHeader,
} from './styles';
import { DatabaseForm, DatabaseObject } from '../types';
import { t } from '@superset-ui/core';

const supersetTextDocs = getDatabaseDocumentationLinks();

Expand Down

0 comments on commit cdc0d97

Please sign in to comment.