Skip to content

Commit

Permalink
Merge pull request #129 from Ilhasoft/develop
Browse files Browse the repository at this point in the history
Version 1.9.3
  • Loading branch information
Douglas Paz authored Jul 13, 2018
2 parents ed47fb9 + 743f3f2 commit f9df49b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bothub-webapp",
"version": "1.9.1",
"version": "1.9.3",
"description": "bothub webapp",
"author": "IlhaSoft <[email protected]>",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Repository.vue
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ import ExamplesList from '@/components/example/ExamplesList';
import RequestGenerator from '@/components/repository/RequestGenerator';
import AnalyzeTextDrawer from '@/components/repository/AnalyzeTextDrawer';
import EditRepositoryForm from '@/components/repository/EditRepositoryForm';
import LanguageSelect from '@/components/shared/LanguageSelect';
import LanguageSelect from '@/components/inputs/LanguageSelect';
import TranslateList from '@/components/translate/TranslateList';
import TranslationsStatus from '@/components/translate/TranslationsStatus';
import TranslationsList from '@/components/translate/TranslationsList';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/repository/RequestGenerator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ request.send(data);</div>
</template>

<script>
import LanguageSelect from '@/components/shared/LanguageSelect';
import LanguageSelect from '@/components/inputs/LanguageSelect';
const components = {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const LANGUAGES = process.env.SUPPORTED_LANGUAGES
.split('|')
.map(v => v.split(':')[0])
.reduce((current, lang) => {
Object.assign(current, { lang: VERBOSE_LANGUAGES[lang] || lang });
Object.assign(current, { [lang]: VERBOSE_LANGUAGES[lang] || lang });
return current;
}, {});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Buefy from 'buefy';

import { shallow, createLocalVue } from '@vue/test-utils';
import LanguageSelect from '@/components/shared/LanguageSelect';
import LanguageSelect from '@/components/inputs/LanguageSelect';


const localVue = createLocalVue();
Expand Down

0 comments on commit f9df49b

Please sign in to comment.