Skip to content

Commit

Permalink
move Link into src/components
Browse files Browse the repository at this point in the history
  • Loading branch information
nytai committed Mar 13, 2020
1 parent 8aecdab commit 95b4242
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion superset-frontend/spec/javascripts/sqllab/Link_spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import React from 'react';
import { shallow } from 'enzyme';

import Link from '../../../src/SqlLab/components/Link';
import Link from '../../../src/components/Link';

describe('Link', () => {
const mockedProps = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import React from 'react';
import { mount, shallow } from 'enzyme';

import Link from '../../../src/SqlLab/components/Link';
import Link from '../../../src/components/Link';
import TableElement from '../../../src/SqlLab/components/TableElement';
import ColumnElement from '../../../src/SqlLab/components/ColumnElement';
import { mockedActions, table } from './fixtures';
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/SqlLab/components/QueryTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { Table } from 'reactable-arc';
import { Label, ProgressBar, Well } from 'react-bootstrap';
import { t } from '@superset-ui/translation';

import Link from './Link';
import Link from '../../components/Link';
import ResultSet from './ResultSet';
import ModalTrigger from '../../components/ModalTrigger';
import HighlightedSql from './HighlightedSql';
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/SqlLab/components/ShowSQL.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import github from 'react-syntax-highlighter/dist/styles/hljs/github';

import { t } from '@superset-ui/translation';

import Link from './Link';
import Link from '../../components/Link';
import ModalTrigger from '../../components/ModalTrigger';

registerLanguage('sql', sql);
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/SqlLab/components/TableElement.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import shortid from 'shortid';
import { t } from '@superset-ui/translation';

import CopyToClipboard from '../../components/CopyToClipboard';
import Link from './Link';
import Link from '../../components/Link';
import ColumnElement from './ColumnElement';
import ShowSQL from './ShowSQL';
import ModalTrigger from '../../components/ModalTrigger';
Expand Down
File renamed without changes.

0 comments on commit 95b4242

Please sign in to comment.