Skip to content

Commit

Permalink
Don't filter solo cert controllers, just show all
Browse files Browse the repository at this point in the history
  • Loading branch information
fixterjake committed Feb 27, 2024
1 parent f451c57 commit 297ba27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/instructor/solocerts/New.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default {
methods: {
async getControllers() {
const { data } = await zabApi.get('/feedback/controllers');
this.controllers = data.data.filter((c) => c.rating > 2 && c.vis == false);
this.controllers = data.data;
},
async submitCert() {
try {
Expand Down

0 comments on commit 297ba27

Please sign in to comment.