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

Commit e4f9ea8

Browse files
author
Ken Berkeley
committed
[improve] <head-sort> remove class pull-right
1 parent 9bdac32 commit e4f9ea8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lib/HeaderSettings/ColumnGroup.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ export default {
2525
props: {
2626
colGroup: { type: Object, required: true }
2727
},
28-
data: () => ({ changes: [] }), // record the changes with a stack
28+
data: () => ({
29+
changes: [] // record the changes with a stack
30+
}),
2931
computed: {
3032
inputType () {
3133
return this.colGroup.type || 'checkbox'

lib/HeaderSettings/index.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
</div>
1111
<div class="m-10 clearfix">
1212
<div class="btn-group btn-group-sm pull-right">
13-
<button class="btn btn-default" @click="apply()">Apply</button>
13+
<button class="btn btn-default" @click="apply()">
14+
Apply
15+
</button>
1416
<template v-if="supportBackup">
1517
<button data-toggle="dropdown" class="btn btn-default dropdown-toggle box-shadow-none">
1618
<span class="caret"></span>

lib/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</template>
2626

2727
<i v-if="column.explain" class="fa fa-info-circle cursor-help" :title="column.explain"></i>
28-
<head-sort v-if="column.sort" :field="column.field" :query="query" class="pull-right" />
28+
<head-sort v-if="column.sort" :field="column.field" :query="query" />
2929
</th>
3030
</transition-group>
3131
</thead>

0 commit comments

Comments
 (0)