File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ const DEFAULT_FIELDS = [
50
50
id : 'icon.ico' ,
51
51
label : __ ( 'Media' ) ,
52
52
render : ( { item } : { item : Site } ) => < SiteIcon site = { item } /> ,
53
+ enableSorting : false ,
53
54
} ,
54
55
{
55
56
id : 'subscribers_count' ,
@@ -72,6 +73,7 @@ const DEFAULT_FIELDS = [
72
73
filterBy : {
73
74
operators : [ 'is' as Operator ] ,
74
75
} ,
76
+ enableSorting : false ,
75
77
} ,
76
78
{
77
79
id : 'protect' ,
@@ -86,6 +88,7 @@ const DEFAULT_FIELDS = [
86
88
filterBy : {
87
89
operators : [ 'is' as Operator ] ,
88
90
} ,
91
+ enableSorting : false ,
89
92
} ,
90
93
{
91
94
id : 'status' ,
@@ -105,6 +108,7 @@ const DEFAULT_FIELDS = [
105
108
operators : [ 'is' as Operator ] ,
106
109
} ,
107
110
render : ( { item } : { item : Site } ) => ( item . is_a8c ? __ ( 'Yes' ) : __ ( 'No' ) ) ,
111
+ enableSorting : false ,
108
112
} ,
109
113
{
110
114
id : 'preview' ,
@@ -137,6 +141,7 @@ const DEFAULT_FIELDS = [
137
141
</ >
138
142
) ;
139
143
} ,
144
+ enableSorting : false ,
140
145
} ,
141
146
] ;
142
147
You can’t perform that action at this time.
0 commit comments