Skip to content

Commit

Permalink
fix: prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdouglaspratt committed Sep 19, 2024
1 parent feaf440 commit 88aa5c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
9 changes: 2 additions & 7 deletions es-ds-docs/pages/organisms/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,8 @@ onMounted(async () => {

<template>
<div>
<h1>
EsFooter component
</h1>
<p>
The footer is a specialized component intended for use outside the normal content
container. See below.
</p>
<h1>EsFooter component</h1>
<p>The footer is a specialized component intended for use outside the normal content container. See below.</p>
<ds-doc-source
:comp-code="compCode"
comp-source="es-ds-components/components/es-footer.vue"
Expand Down
13 changes: 3 additions & 10 deletions es-ds-docs/pages/organisms/nav-bar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ const compSourceText = compSource.default;
const docSource = await import('./nav-bar.vue?raw');
const scriptRegex = /\/\/ CUSTOM GLOBAL-NAV SCRIPT STARTS([\s\S]+)\/\/ CUSTOM GLOBAL-NAV SCRIPT ENDS/;
const navScriptSource = ref([
...compSourceText.match(scriptRegex)[0]
].join(''));
const navScriptSource = ref([...compSourceText.match(scriptRegex)[0]].join(''));
onMounted(async () => {
if ($prism) {
Expand All @@ -28,13 +26,8 @@ onMounted(async () => {
</script>

<template>
<h1>
EsNavBar
</h1>
<p>
The nav bar is a specialized component intended for use outside the normal content
container. See above.
</p>
<h1>EsNavBar</h1>
<p>The nav bar is a specialized component intended for use outside the normal content container. See above.</p>

<p
v-for="index in 10"
Expand Down

0 comments on commit 88aa5c4

Please sign in to comment.