Skip to content

Commit 8ddc64f

Browse files
authored
remove tutor from the errata FE list (#1587)
1 parent 9809e9a commit 8ddc64f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def errata_fields(request):
100100
if request.GET.get('field', None) == 'resources':
101101
for field, verbose in ERRATA_RESOURCES:
102102
# This is not my favorite way to do this but we need to keep the data on existing errata
103-
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax':
103+
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax' and field != 'OpenStax Tutor':
104104
response.append({'field': field, 'verbose': verbose})
105105

106106
return JsonResponse(response, safe=False)

0 commit comments

Comments
 (0)