Skip to content

Commit

Permalink
fix coding style: replace space with tab
Browse files Browse the repository at this point in the history
  • Loading branch information
odkhang committed Jul 9, 2024
1 parent e0fc504 commit 2bcaced
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions webapp/src/components/AudioTranslationDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ div.c-audio-translation
<script>
export default {
name: 'AudioTranslationDropdown',

Check failure on line 14 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 1 tab but found 2 spaces
props: {
languages: {
type: Array,
required: true
}
},
data() {
return {
props: {
languages: {
type: Array,
required: true
}
},
data() {

Check failure on line 21 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Missing space before function parentheses
return {
selectedLanguage: null, // Selected language for audio translation

Check failure on line 23 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 3 tabs but found 6 spaces
languageOptions: [] // Options for the dropdown

Check failure on line 24 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 3 tabs but found 6 spaces
};

Check failure on line 25 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 2 tabs but found 4 spaces

Check failure on line 25 in webapp/src/components/AudioTranslationDropdown.vue

View workflow job for this annotation

GitHub Actions / build

Extra semicolon
Expand Down Expand Up @@ -56,4 +56,3 @@ export default {
width: 100%;
}
</style>

0 comments on commit 2bcaced

Please sign in to comment.