summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-10-09 19:17:48 +0300
committerDerick Montague <derick.montague@ibm.com>2020-10-20 18:59:54 +0300
commitcaaf7baff0b5995ef6c8fef213f1ec7af34ca911 (patch)
tree07ec4ee03a9a2c594d4914ca853d97573aa06f50 /docs/.vuepress/enhanceApp.js
parent0a5b9c6dcd063144896dbdc42f24c681b8b9267c (diff)
downloadwebui-vue-caaf7baff0b5995ef6c8fef213f1ec7af34ca911.tar.xz
Fix documentation render bug
Using the i18n module in the BVToastMixin file caused an issue with VuePress that resulted in the static files not being created and the documentation rendering as a blank page. - Removed the import of the BVToastMixin - Copied BVToastMixin to docs components and removed i18n - Copied the StatusIcon to docs components to so icons will render with the correct fill color in the toast notifications GitHub Issue: https://github.com/openbmc/webui-vue/issues/40 Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Ie479df17d529ad2803c41e7442801e13601a0a02
Diffstat (limited to 'docs/.vuepress/enhanceApp.js')
-rw-r--r--docs/.vuepress/enhanceApp.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/.vuepress/enhanceApp.js b/docs/.vuepress/enhanceApp.js
index 9a3b2b64..c0f3dfba 100644
--- a/docs/.vuepress/enhanceApp.js
+++ b/docs/.vuepress/enhanceApp.js
@@ -1,7 +1,6 @@
import "./styles/_index.scss";
import Alert from "../../src/components/Global/Alert";
-import BVToastMixin from "../../src/components/Mixins/BVToastMixin";
// Bootstrap-vue Plugin imports
import {
@@ -18,5 +17,4 @@ export default ({ Vue }) => {
// BMC Components and Mixins
Vue.component('Alert', Alert);
- Vue.mixin('BVToastMixin', BVToastMixin);
} \ No newline at end of file