Skip to content

Commit

Permalink
- Fix deploy script
Browse files Browse the repository at this point in the history
- Reorder langSelect
  • Loading branch information
tuandm committed Oct 23, 2019
1 parent b126a15 commit ba84b09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Envoy.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

@task('clean_old_releases')
# This will list our releases by modification time and delete all but the 2 most recent.
purging=$(ls -dt {{ $releases_dir }}/* | tail -n +2);
purging=$(ls -dt {{ $releases_dir }}/* | tail -n +3);

if [ "$purging" != "" ]; then
echo Purging old releases: $purging;
Expand Down
6 changes: 3 additions & 3 deletions resources/js/components/LangSelect/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<el-dropdown-item :disabled="language==='en'" command="en">
English
</el-dropdown-item>
<el-dropdown-item :disabled="language==='ru'" command="ru">
Русский
</el-dropdown-item>
<el-dropdown-item :disabled="language==='zh'" command="zh">
中文
</el-dropdown-item>
<el-dropdown-item :disabled="language==='ru'" command="ru">
Русский
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</template>
Expand Down

0 comments on commit ba84b09

Please sign in to comment.