Skip to content

Commit 49e8dd3

Browse files
committed
add semicolon
1 parent e146825 commit 49e8dd3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

web_src/js/components/DashboardRepoList.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -161,23 +161,23 @@ function initVueComponents(app) {
161161
return {
162162
checked: false,
163163
indeterminate: false
164-
}
164+
};
165165
case 'archived':
166166
return {
167167
checked: true,
168168
indeterminate: false
169-
}
169+
};
170170
case 'both':
171171
return {
172172
checked: false,
173173
indeterminate: true
174-
}
174+
};
175175
default:
176176
this.archivedFilter = 'unarchived';
177177
return {
178178
checked: false,
179179
indeterminate: true
180-
}
180+
};
181181
}
182182
},
183183

@@ -187,23 +187,23 @@ function initVueComponents(app) {
187187
return {
188188
checked: false,
189189
indeterminate: false
190-
}
190+
};
191191
case 'private':
192192
return {
193193
checked: true,
194194
indeterminate: false
195-
}
195+
};
196196
case 'both':
197197
return {
198198
checked: false,
199199
indeterminate: true
200-
}
200+
};
201201
default:
202202
this.privateFilter = 'both';
203203
return {
204204
checked: false,
205205
indeterminate: true
206-
}
206+
};
207207
}
208208
},
209209

0 commit comments

Comments
 (0)