diff --git a/api/views.py b/api/views.py index def09c63b..dd7df051b 100644 --- a/api/views.py +++ b/api/views.py @@ -100,7 +100,7 @@ def errata_fields(request): if request.GET.get('field', None) == 'resources': for field, verbose in ERRATA_RESOURCES: # This is not my favorite way to do this but we need to keep the data on existing errata - if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax': + if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax' and field != 'OpenStax Tutor': response.append({'field': field, 'verbose': verbose}) return JsonResponse(response, safe=False)