brinkmanlab / IslandCompare

Pipeline for detecting and annotating genomic islands and relationships between the respective genomes
Other
4 stars 2 forks source link

axios not merging url parameters #185

Closed innovate-invent closed 4 years ago

innovate-invent commented 4 years ago

A bug in axios@0.19 prevent the api key from being included in the requests. https://github.com/axios/axios/issues/2190 temporary fix:

cd node_modules/@vuex-orm/plugin-axios/
npm remove axios
rm package-lock.json
npm install axios@0.18.1

axios is compiled into vuex-orm-axios so you have to import it from source:

import VuexORMAxios from "@vuex-orm/plugin-axios/src";
innovate-invent commented 4 years ago

Fixed by upgrade