summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2023-07-11 17:11:06 +0300
committerGunnar Mills <gmills@us.ibm.com>2023-07-11 18:02:33 +0300
commit6236b11ba7b7fb37f37e6af887b87e3071a8a4cb (patch)
treedfc7f5401d31dc428f4e0f74efe6b0936cd2a565
parent2a87a2e4e8d004b33fd66ca769386b8c77b4fbe9 (diff)
downloadwebui-vue-6236b11ba7b7fb37f37e6af887b87e3071a8a4cb.tar.xz
Fix CI fail
Looks like a new bump of the tools caught us. Saw this fail on https://gerrit.openbmc.org/c/openbmc/webui-vue/+/63442 Fails like: ``` diff --git a/docs/guide/components/page-section/index.md b/docs/guide/components/page-section/index.md index 94113c5..a37d67c 100644 --- a/docs/guide/components/page-section/index.md +++ b/docs/guide/components/page-section/index.md @@ -6,7 +6,7 @@ string will be rendered in an `h2` header element. ```vue // Example: `src/views/AccessControl/Ldap/Ldap.vue` - <page-section :section-title="$t('pageLdap.settings')"> +<page-section :section-title="$t('pageLdap.settings')"></page-section> ``` ``` Change-Id: I1ada18a09050c5fbcc773a28ef20b8af1b7e84e4 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r--docs/guide/components/page-section/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/components/page-section/index.md b/docs/guide/components/page-section/index.md
index 94113c58..a37d67c2 100644
--- a/docs/guide/components/page-section/index.md
+++ b/docs/guide/components/page-section/index.md
@@ -6,7 +6,7 @@ string will be rendered in an `h2` header element.
```vue
// Example: `src/views/AccessControl/Ldap/Ldap.vue`
- <page-section :section-title="$t('pageLdap.settings')">
+<page-section :section-title="$t('pageLdap.settings')"></page-section>
```
[View the page section component source code](https://github.com/openbmc/webui-vue/blob/master/src/components/Global/PageSection.vue).