Skip to content

Adjust syntax for some root relative imports #435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/DocumentationTopic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ import BetaLegalText from 'theme/components/DocumentationTopic/BetaLegalText.vue
import LanguageSwitcher from 'theme/components/DocumentationTopic/Summary/LanguageSwitcher.vue';
import DocumentationHero from 'docc-render/components/DocumentationTopic/DocumentationHero.vue';
import WordBreak from 'docc-render/components/WordBreak.vue';
import { TopicSectionsStyle } from '@/constants/TopicSectionsStyle';
import { TopicSectionsStyle } from 'docc-render/constants/TopicSectionsStyle';
import OnThisPageNav from 'theme/components/OnThisPageNav.vue';
import Abstract from './DocumentationTopic/Description/Abstract.vue';
import ContentNode from './DocumentationTopic/ContentNode.vue';
Expand Down
2 changes: 1 addition & 1 deletion src/components/DocumentationTopic/Topics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</template>

<script>
import { TopicSectionsStyle } from '@/constants/TopicSectionsStyle';
import { TopicSectionsStyle } from 'docc-render/constants/TopicSectionsStyle';
import TopicsTable from './TopicsTable.vue';

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/components/DocumentationTopic/TopicsLinkCardGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<script>
import Row from 'docc-render/components/ContentNode/Row.vue';
import Column from 'docc-render/components/ContentNode/Column.vue';
import { TopicSectionsStyle } from '@/constants/TopicSectionsStyle';
import { TopicSectionsStyle } from 'docc-render/constants/TopicSectionsStyle';
import TopicsLinkCardGridItem from './TopicsLinkCardGridItem.vue';

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/components/DocumentationTopic/TopicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<script>
import ContentNode from 'docc-render/components/DocumentationTopic/ContentNode.vue';
import WordBreak from 'docc-render/components/WordBreak.vue';
import { TopicSectionsStyle } from '@/constants/TopicSectionsStyle';
import { TopicSectionsStyle } from 'docc-render/constants/TopicSectionsStyle';
import TopicsLinkCardGrid from 'docc-render/components/DocumentationTopic/TopicsLinkCardGrid.vue';
import LinkableHeading from 'docc-render/components/ContentNode/LinkableHeading.vue';
import ContentTable from './ContentTable.vue';
Expand Down