Skip to content

Commit 84d53d9

Browse files
committed
chore(docs): fix Bootstrap browser and devices link
1 parent d7e2425 commit 84d53d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/markdown/intro/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ you may need to make to your project:
765765
### CSS
766766

767767
BootstrapVue is to be used with Bootstrap v{{bootstrapVersionMinor}} CSS/SCSS. Please see
768-
<b-link :href="hrefBootstrapBrowserDevices" target="_blank">Browsers and devices</b-link> for more
768+
<b-link :href="bootstrapBrowserDevicesHref" target="_blank">Browsers and devices</b-link> for more
769769
information about browsers currently supported by Bootstrap v{{bootstrapVersionMajor}}.
770770

771771
### JS

docs/pages/docs/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ export default {
6565
}
6666
},
6767
computed: {
68-
hrefBootstrapBrowserDevices() {
69-
const minorVersion = this.bootstrapVersionMinor
70-
return `//getbootstrap.com/docs/${minorVersion}/getting-started/browsers-devices`
68+
bootstrapBrowserDevicesHref() {
69+
const { bootstrapVersionMinor: version } = this
70+
return `https://getbootstrap.com/docs/${version}/getting-started/browsers-devices`
7171
},
7272
meta() {
7373
return meta

0 commit comments

Comments
 (0)