This repository was archived by the owner on Apr 1, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ export default {
25
25
props: {
26
26
colGroup: { type: Object , required: true }
27
27
},
28
- data : () => ({ changes: [] }), // record the changes with a stack
28
+ data : () => ({
29
+ changes: [] // record the changes with a stack
30
+ }),
29
31
computed: {
30
32
inputType () {
31
33
return this .colGroup .type || ' checkbox'
Original file line number Diff line number Diff line change 10
10
</div >
11
11
<div class =" m-10 clearfix" >
12
12
<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 >
14
16
<template v-if =" supportBackup " >
15
17
<button data-toggle =" dropdown" class =" btn btn-default dropdown-toggle box-shadow-none" >
16
18
<span class =" caret" ></span >
Original file line number Diff line number Diff line change 25
25
</template >
26
26
27
27
<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" />
29
29
</th >
30
30
</transition-group >
31
31
</thead >
You can’t perform that action at this time.
0 commit comments