Skip to content

Commit

Permalink
🐛 docs: Fix ContentExplorer display (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
deraw authored Aug 17, 2021
1 parent cae2aa6 commit ec1f283
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
- 🐛 **Corrections de bugs**
- **installation:** Correction de l'affichage des `ExpansionPanels` ([#1325](https://github.com/assurance-maladie-digital/design-system/pull/1325)) ([11cfa7c](https://github.com/assurance-maladie-digital/design-system/commit/11cfa7cf7230459e4cffb895a9f8c6a3bc876f20))
- **DocGithubLink:** Correction du lien d'édition ([#1352](https://github.com/assurance-maladie-digital/design-system/pull/1352))) ([255e38f](https://github.com/assurance-maladie-digital/design-system/commit/255e38ff1ff666bdb7dca7e18d726e3b0de5729d))
- **introduction:** Correction du lien "précédent" cassé ([#1354](https://github.com/assurance-maladie-digital/design-system/pull/1354))
- **introduction:** Correction du lien "précédent" cassé ([#1354](https://github.com/assurance-maladie-digital/design-system/pull/1354)) ([cae2aa6](https://github.com/assurance-maladie-digital/design-system/commit/cae2aa6211166eda0c5ffc0f082b3236acd54c4d))
- **explorer:** Correction de l'affichage du Starter Kit Explorer ([#1357](https://github.com/assurance-maladie-digital/design-system/pull/1357))

- ♻️ **Refactoring**
- **home:** Refonte de la page d'accueil ([#1330](https://github.com/assurance-maladie-digital/design-system/pull/1330)) ([7ef81d5](https://github.com/assurance-maladie-digital/design-system/commit/7ef81d57c327f3cea2c2cca082e6fe1b592176ea))
Expand Down
8 changes: 7 additions & 1 deletion packages/docs/src/components/global/DocContentExplorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@
import Vue from 'vue';
import Component from 'vue-class-component';
import ContentExplorer from '../content-explorer/ContentExplorer.vue';
import { contentExplorerItems } from '../../data/contentExplorerItems';
@Component
@Component({
components: {
ContentExplorer
}
})
export default class DocContentExplorer extends Vue {
items = contentExplorerItems;
}
Expand Down

0 comments on commit ec1f283

Please sign in to comment.