Skip to content

Commit d6ba5b3

Browse files
Merge pull request #12 from webdevnerdstuff/dev
Fix links
2 parents 332bb22 + c1e6659 commit d6ba5b3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ Vuetify Color Field is a Vuetify VTextField Color Picker Component
3434

3535
## Change Log
3636

37-
[CHANGELOG](https://github.com/webdevnerdstuff/vuetify-color-field/blob/master/CHANGELOG.md)
37+
[CHANGELOG](https://github.com/webdevnerdstuff/vuetify-color-field/blob/main/CHANGELOG.md)
3838

3939

4040
## License
4141

4242
Copyright (c) 2023 WebDevNerdStuff
43-
Licensed under the [MIT license](https://github.com/webdevnerdstuff/vuetify-color-field/blob/master/LICENSE.md).
43+
Licensed under the [MIT license](https://github.com/webdevnerdstuff/vuetify-color-field/blob/main/LICENSE.md).
4444

4545

4646
## Legal

src/documentation/sections/LicenseSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<br />
2323
Licensed under the
2424
<a
25-
:href="`${links.repo}/blob/master/LICENSE.md`"
25+
:href="`${links.github}/blob/main/LICENSE.md`"
2626
target="_blank"
2727
>
2828
MIT License

src/stores/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import packageJson from '@root/package.json';
33

44

55
export const useCoreStore = defineStore('core', () => {
6-
const packageName = packageJson.name;
76
const storageName = 'vuetify-color-field';
87

98
// Links //
@@ -13,7 +12,7 @@ export const useCoreStore = defineStore('core', () => {
1312
github: repoBaseUrl,
1413
githubProfile: 'https://github.com/webdevnerdstuff',
1514
license: `${repoBaseUrl}/blob/main/LICENSE.md`,
16-
npm: `https://www.npmjs.com/package/${packageName}`,
15+
npm: `https://www.npmjs.com/package/${storageName}`,
1716
vue: 'https://vuejs.org/',
1817
vueUse: 'https://vueuse.org/',
1918
vuetify: 'https://vuetifyjs.com/',

0 commit comments

Comments
 (0)