Skip to content

Commit

Permalink
Merge branch 'release/6.0.10'
Browse files Browse the repository at this point in the history
* release/6.0.10:
  fixes #867
  Apply fixes from StyleCI (#865)
  • Loading branch information
austintoddj committed Oct 18, 2020
2 parents 6d8b876 + 5efbf8a commit 2c78621
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/js/app.js": "/js/app.js?id=c0acc0e71985702efadd",
"/js/app.js": "/js/app.js?id=fc1f9fe42208ba1e531c",
"/css/app.css": "/css/app.css?id=08bd22e9b4628a5ecd91",
"/js/app.js.map": "/js/app.js.map?id=24b940d7f7b37c5a7ef0",
"/js/app.js.map": "/js/app.js.map?id=6a77c441a99d1ce312a3",
"/css/app.css.map": "/css/app.css.map?id=a26e3f2697987381b236"
}
4 changes: 2 additions & 2 deletions resources/js/components/PageHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export default {
methods: {
logout() {
axios.get(`${this.baseDomain}/logout`).then(() => {
window.location.href = `${this.baseDomain}/login`;
axios.get(`${this.settings.path}/logout`).then(() => {
window.location.href = `${this.settings.path}/login`;
});
},
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/editor/EmbedImageModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export default {
getServerOptions() {
return {
url: `${this.baseDomain}/api/uploads`,
url: `${this.settings.path}/api/uploads`,
headers: {
'X-CSRF-TOKEN': document.head.querySelector('meta[name="csrf-token"]').content,
},
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/modals/AvatarModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default {
getServerOptions() {
return {
url: `${this.baseDomain}/api/uploads`,
url: `${this.settings.path}/api/uploads`,
headers: {
'X-CSRF-TOKEN': document.head.querySelector('meta[name="csrf-token"]').content,
},
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/modals/FeaturedImageModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default {
getServerOptions() {
return {
url: `${this.baseDomain}/api/uploads`,
url: `${this.settings.path}/api/uploads`,
headers: {
'X-CSRF-TOKEN': document.head.querySelector('meta[name="csrf-token"]').content,
},
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2904,14 +2904,14 @@ eslint-plugin-sort-imports-es6-autofix@^0.5.0:
eslint "^6.2.2"

eslint-plugin-vue@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.0.1.tgz#8e69a9041bb9719c018f154fdcacbb17713e0240"
integrity sha512-Pzl88S8Gue9BPcvSg+K/Av2V5UlwGeBxiZW5cLYbDngHm7vLnSuO/q2n54kIyCqfPmuD5PKlJrNSzoN+Ur9HRg==
version "7.1.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.1.0.tgz#832d83e4e1e480c7285b2bc3ff1076cd0dca7a5b"
integrity sha512-9dW7kj8/d2IkDdgNpvIhJdJ3XzU3x4PThXYMzWt49taktYnGyrTY6/bXCYZ/VtQKU9kXPntPrZ41+8Pw0Nxblg==
dependencies:
eslint-utils "^2.1.0"
natural-compare "^1.4.0"
semver "^7.3.2"
vue-eslint-parser "^7.1.0"
vue-eslint-parser "^7.1.1"

eslint-scope@^4.0.3:
version "4.0.3"
Expand Down Expand Up @@ -7467,7 +7467,7 @@ vm-browserify@^1.0.1:
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==

vue-eslint-parser@^7.1.0:
vue-eslint-parser@^7.1.1:
version "7.1.1"
resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3"
integrity sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==
Expand Down

0 comments on commit 2c78621

Please sign in to comment.