Skip to content
This repository was archived by the owner on Apr 1, 2022. It is now read-only.

Update index.vue #153

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/HeaderSettings/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@
</div>
<div class="clearfix" style="margin: 10px 0">
<div class="btn-group btn-group-sm pull-right">
<button class="btn btn-default" type="button" @click="apply()">
<button v-if="!supportBackup" class="btn btn-default" type="button" @click="apply()">
{{ $i18nForDatatable('Apply') }}
</button>
<template v-if="supportBackup">
<button v-if="supportBackup" class="btn btn-default" type="button" @click="apply(true)">
{{ $i18nForDatatable('Apply') }}
</button>
<!--<template v-if="supportBackup">
<button data-toggle="dropdown" class="btn btn-default dropdown-toggle" type="button" style="box-shadow: none">
<span class="caret"></span>
</button>
Expand All @@ -34,12 +37,12 @@
</a>
</li>
</ul>
</template>
</template>-->
</div>
</div>
<small v-if="usingBak" class="pull-left text-muted" style="margin-top: -8px">
<!--<small v-if="usingBak" class="pull-left text-muted" style="margin-top: -8px">
( {{ $i18nForDatatable('Using local settings') }} )
</small>
</small>-->
</div>
</div>
</template>
Expand Down