diff --git a/services/web/locales/en.json b/services/web/locales/en.json index 8eeb0ac691..2f8d2e304b 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -520,7 +520,6 @@ "editor_disconected_click_to_reconnect": "Editor disconnected, click anywhere to reconnect.", "editor_limit_exceeded_in_this_project": "Too many editors in this project", "editor_only_hide_pdf": "Editor only <0>(hide PDF)", - "editor_resources": "Editor Resources", "editor_theme": "Editor theme", "educational_discount_applied": "40% educational discount applied!", "educational_discount_available_for_groups_of_ten_or_more": "The educational discount is available for groups of 10 or more", diff --git a/services/web/modules/launchpad/app/views/launchpad.pug b/services/web/modules/launchpad/app/views/launchpad.pug index c478fe7b64..28d3ff8fc8 100644 --- a/services/web/modules/launchpad/app/views/launchpad.pug +++ b/services/web/modules/launchpad/app/views/launchpad.pug @@ -166,13 +166,6 @@ block content h2 #{translate('status_checks')} - - .row.row-spaced-small - .col-sm-5 - | #{translate('editor_resources')} - .col-sm-7 - +launchpad-check('ide') - .row.row-spaced-small .col-sm-5 diff --git a/services/web/modules/launchpad/frontend/js/pages/launchpad.js b/services/web/modules/launchpad/frontend/js/pages/launchpad.js index ac26168ec6..861b49d9fb 100644 --- a/services/web/modules/launchpad/frontend/js/pages/launchpad.js +++ b/services/web/modules/launchpad/frontend/js/pages/launchpad.js @@ -75,17 +75,6 @@ function setUpStatusIndicators() { }) } ) - - setUpStatusIndicator( - document.querySelector('[data-ol-launchpad-check="ide"]'), - () => { - return fetch(getMeta('ol-ideJsPath')).then(res => { - if (!res.ok) { - throw new Error(`Http status: ${res.status}`) - } - }) - } - ) } if (getMeta('ol-adminUserExists')) {