diff --git a/services/web/frontend/extracted-translation-keys.json b/services/web/frontend/extracted-translation-keys.json index 037760b973..131b68a9e6 100644 --- a/services/web/frontend/extracted-translation-keys.json +++ b/services/web/frontend/extracted-translation-keys.json @@ -61,7 +61,6 @@ "somthing_went_wrong_compiling", "stop_on_validation_error", "terminated", - "the_file_outline_is_a_new_feature_click_the_icon_to_learn_more", "timedout", "toggle_compile_options_menu", "toggle_output_files_list", diff --git a/services/web/frontend/js/features/outline/components/outline-pane.js b/services/web/frontend/js/features/outline/components/outline-pane.js index c8f62c1668..bb3d91013b 100644 --- a/services/web/frontend/js/features/outline/components/outline-pane.js +++ b/services/web/frontend/js/features/outline/components/outline-pane.js @@ -1,8 +1,7 @@ import React, { useState, useEffect } from 'react' import PropTypes from 'prop-types' -import { OverlayTrigger, Tooltip } from 'react-bootstrap' import classNames from 'classnames' -import { useTranslation, Trans } from 'react-i18next' +import { useTranslation } from 'react-i18next' import OutlineRoot from './outline-root' import Icon from '../../../shared/components/icon' @@ -46,17 +45,6 @@ function OutlinePane({ } } - const infoContent = ( - <> - ]} - /> - . - - ) - const tooltip = {infoContent} - return (
@@ -71,19 +59,6 @@ function OutlinePane({ classes={{ icon: 'outline-caret-icon' }} />

{t('file_outline')}

- {expanded ? ( - - ev.stopPropagation()} - > - {infoContent} - - - ) : null}
{expanded && isTexFile ? ( diff --git a/services/web/locales/en.json b/services/web/locales/en.json index 478ca4eb1e..1b7de02f8b 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -35,7 +35,6 @@ "expand": "Expand", "collapse": "Collapse", "file_outline": "File outline", - "the_file_outline_is_a_new_feature_click_the_icon_to_learn_more": "The <0>File outline is a new feature. Click the icon to learn more", "we_cant_find_any_sections_or_subsections_in_this_file": "We can’t find any sections or subsections in this file", "find_out_more_about_the_file_outline": "Find out more about the file outline", "invalid_institutional_email": "Your institution's SSO service returned your email address as __email__, which is at an unexpected domain that we do not recognise as belonging to it. You may be able to change your primary email address via your user profile at your institution to one at your institution's domain. Please contact your IT department if you have any questions.", diff --git a/services/web/test/frontend/features/outline/components/outline-pane.test.js b/services/web/test/frontend/features/outline/components/outline-pane.test.js index 03afe72e2e..a4798e12aa 100644 --- a/services/web/test/frontend/features/outline/components/outline-pane.test.js +++ b/services/web/test/frontend/features/outline/components/outline-pane.test.js @@ -49,7 +49,6 @@ describe('', function() { ) screen.getByRole('tree') - screen.getByRole('link', { textMatch: 'The File outline is a new feature' }) }) it('renders disabled outline', function() {