mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 12:13:08 +00:00
Linter fixes
This commit is contained in:
parent
bf6f97f05f
commit
42f3a25e67
4 changed files with 14 additions and 9 deletions
|
@ -131,7 +131,6 @@ export default {
|
|||
|
||||
firebase.auth().signInWithRedirect(firebaseAuthProvider)
|
||||
.catch((message) => {
|
||||
console.log(message);
|
||||
this.$bus.$emit('TOAST', {
|
||||
message,
|
||||
type: 'error',
|
||||
|
|
|
@ -2,27 +2,33 @@
|
|||
<div v-if="game" class="review-box">
|
||||
<div class="info">
|
||||
<section v-if="playerPerspectives">
|
||||
<strong>{{ $t('gameDetails.reviewBox.playerPerspectives') }}</strong> {{ playerPerspectives }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.playerPerspectives') }}</strong>
|
||||
{{ playerPerspectives }}
|
||||
</section>
|
||||
|
||||
<section v-if="gameModes">
|
||||
<strong>{{ $t('gameDetails.reviewBox.gameModes') }}</strong> {{ gameModes }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.gameModes') }}</strong>
|
||||
{{ gameModes }}
|
||||
</section>
|
||||
|
||||
<section v-if="genres">
|
||||
<strong>{{ $t('gameDetails.reviewBox.genres') }}</strong> {{ genres }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.genres') }}</strong>
|
||||
{{ genres }}
|
||||
</section>
|
||||
|
||||
<section v-if="gamePlatforms">
|
||||
<strong>{{ $t('gameDetails.reviewBox.gamePlatforms') }}</strong> {{ gamePlatforms }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.gamePlatforms') }}</strong>
|
||||
{{ gamePlatforms }}
|
||||
</section>
|
||||
|
||||
<section v-if="developers">
|
||||
<strong>{{ $t('gameDetails.reviewBox.developers') }}</strong> {{ developers }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.developers') }}</strong>
|
||||
{{ developers }}
|
||||
</section>
|
||||
|
||||
<section v-if="publishers">
|
||||
<strong>{{ $t('gameDetails.reviewBox.publishers') }}</strong> {{ publishers }}
|
||||
<strong>{{ $t('gameDetails.reviewBox.publishers') }}</strong>
|
||||
{{ publishers }}
|
||||
</section>
|
||||
|
||||
<!-- <section v-if="releaseDate">
|
||||
|
|
|
@ -40,7 +40,7 @@ module.exports = {
|
|||
gamePlatforms: 'Platforms',
|
||||
developers: 'Developer',
|
||||
publishers: 'Publishers',
|
||||
}
|
||||
},
|
||||
},
|
||||
list: {
|
||||
edit: 'Edit list name',
|
||||
|
|
|
@ -45,7 +45,7 @@ import ToggleSwitch from '@/components/ToggleSwitch/ToggleSwitch';
|
|||
import IgdbCredit from '@/components/IgdbCredit/IgdbCredit';
|
||||
import Platform from '@/components/Platform/Platform';
|
||||
import Panel from '@/components/Panel/Panel';
|
||||
import { groupBy, sortBy } from 'lodash';
|
||||
import { sortBy } from 'lodash';
|
||||
import { mapState, mapGetters } from 'vuex';
|
||||
|
||||
export default {
|
||||
|
|
Loading…
Reference in a new issue