Skip to content

Commit 503ea67

Browse files
committed
move components to components
1 parent 72ec2b0 commit 503ea67

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

src/components/KymaModules/KymaModulesAddModule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { MessageStrip } from '@ui5/webcomponents-react';
33
import { useTranslation } from 'react-i18next';
44
import { ResourceForm } from 'shared/ResourceForm';
55
import { Spinner } from 'shared/components/Spinner/Spinner';
6-
import ModulesCard from './ModulesCard';
6+
import ModulesCard from 'components/KymaModules/components/ModulesCard.js';
77
import { cloneDeep } from 'lodash';
88
import {
99
useModulesReleaseQuery,

src/components/KymaModules/KymaModulesEdit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ import './KymaModulesCreate.scss';
2828
import { Spinner } from 'shared/components/Spinner/Spinner';
2929
import { isFormOpenState } from 'state/formOpenAtom';
3030
import { isResourceEditedState } from 'state/resourceEditedAtom';
31-
import { ManagedWarnings } from './ManagedWarnings';
32-
import { ChannelWarning } from './ChannelWarning';
33-
import { UnmanagedModuleInfo } from './UnmanagedModuleInfo';
31+
import { ManagedWarnings } from 'components/KymaModules/components/ManagedWarnings.js';
32+
import { ChannelWarning } from './components/ChannelWarning';
33+
import { UnmanagedModuleInfo } from 'components/KymaModules/components/UnmanagedModuleInfo.js';
3434
import {
3535
useModulesReleaseQuery,
3636
useModuleTemplatesQuery,
File renamed without changes.
File renamed without changes.

src/components/KymaModules/ModulesCard.js renamed to src/components/KymaModules/components/ModulesCard.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ import {
99
Text,
1010
Title,
1111
} from '@ui5/webcomponents-react';
12-
import { ExternalLink } from 'shared/components/ExternalLink/ExternalLink';
12+
import { ExternalLink } from 'shared/components/ExternalLink/ExternalLink.js';
1313
import { useTranslation } from 'react-i18next';
1414
import { useEffect, useState } from 'react';
15-
import { findSpec, findStatus, setChannel } from './support';
15+
import {
16+
findSpec,
17+
findStatus,
18+
setChannel,
19+
} from 'components/KymaModules/support.js';
1620

1721
async function isImageAvailable(url) {
1822
try {

src/components/KymaModules/UnmanagedModuleInfo.tsx renamed to src/components/KymaModules/components/UnmanagedModuleInfo.tsx

File renamed without changes.

0 commit comments

Comments
 (0)