Skip to content
This repository has been archived by the owner on Mar 27, 2021. It is now read-only.

Commit

Permalink
Fixed issue in FirstUse component.
Browse files Browse the repository at this point in the history
  • Loading branch information
Physiix committed Aug 25, 2018
1 parent 24c0c7e commit 1843cfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions libs/panes
Submodule panes added at af6e91
12 changes: 5 additions & 7 deletions src/renderer/components/Temp/FirstUse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,26 @@
<div class="text-xs-center">
<v-dialog v-model="dialog" width="600" persistent>
<v-card>
<v-card-title class="headline justify-center" dark primary-title>
{{this.lang.Get('firstUseWelcome')}}
<v-card-title class="headline justify-center" dark primary-title v-html="this.$lang.Get('firstUseWelcome')">
</v-card-title>

<v-card-text class="text-xs-center">
{{this.lang.Get('firstUseContent')}}
<v-card-text class="text-xs-center" v-html="this.$lang.Get('firstUseContent')">
</v-card-text>

<v-divider class="py-4"></v-divider>
<v-card-title>
<p class="ma-0 ml-4">{{this.lang.Get('firstUseSetupFolder')}}</p>
<p class="ma-0 ml-4">{{this.$lang.Get('firstUseSetupFolder')}}</p>
<FolderInput v-model="defaultFolder"></FolderInput>
</v-card-title>
<v-card-title class="pa-0">
<v-card-text class="ma-0 ml-4">{{this.lang.Get('firstUseSetupColor')}}</v-card-text>
<v-card-text class="ma-0 ml-4">{{this.$lang.Get('firstUseSetupColor')}}</v-card-text>
<ColorPicker width="600" padding="10" v-on:color-selected="SelectColor"></ColorPicker>
</v-card-title>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="primary" flat @click="Done">
{{this.lang.Get('done')}}
{{this.$lang.Get('done')}}
</v-btn>
</v-card-actions>
</v-card>
Expand Down

0 comments on commit 1843cfc

Please sign in to comment.