Pitu před 6 roky
rodič
revize
84c4b442cf
2 změnil soubory, kde provedl 3 přidání a 5 odebrání
  1. 0 1
      package.json
  2. 3 4
      src/site/pages/a/_identifier.vue

+ 0 - 1
package.json

@@ -80,7 +80,6 @@
 		"node-sass": "^4.11.0",
 		"postcss-css-variables": "^0.11.0",
 		"postcss-nested": "^3.0.0",
-		"ream": "^3.2.7",
 		"sass-loader": "^7.1.0",
 		"vue-eslint-parser": "^2.0.3"
 	},

+ 3 - 4
src/site/pages/a/_identifier.vue

@@ -52,14 +52,13 @@
 import Grid from '~/components/grid/Grid.vue';
 import Loading from '~/components/loading/CubeShadow.vue';
 import axios from 'axios';
-import config from '~/config.js';
 
 export default {
 	components: { Grid, Loading },
-	async asyncData({ params, error }) {
+	async asyncData({ app, params, error }) {
 		try {
-			const res = await axios.get(`${config.baseURL}/album/${params.identifier}`);
-			const downloadLink = res.data.downloadEnabled ? `${config.baseURL}/album/${params.identifier}/zip` : null;
+			const res = await axios.get(`${app.store.state.config.baseURL}/album/${params.identifier}`);
+			const downloadLink = res.data.downloadEnabled ? `${app.store.state.config.baseURL}/album/${params.identifier}/zip` : null;
 			return {
 				name: res.data.name,
 				downloadEnabled: res.data.downloadEnabled,