Skip to content
Snippets Groups Projects
Commit f4233302 authored by Nick Klick's avatar Nick Klick
Browse files

Remove Open beta messaging for error tracking

Removes the open beta messaging for Error tracking since we have decided to continue using the Rails UI for this feature.

Changelog: changed
parent 31cc7ec0
No related branches found
No related tags found
1 merge request!121476Remove Open beta messaging for error tracking
......@@ -180,7 +180,6 @@ export default {
},
},
epicLink: 'https://gitlab.com/gitlab-org/gitlab/-/issues/353639',
openBetaLink: 'https://about.gitlab.com/handbook/product/gitlab-the-product/#open-beta',
featureFlagLink: helpPagePath('operations/error_tracking'),
created() {
if (this.errorTrackingEnabled) {
......@@ -476,10 +475,6 @@ export default {
__('How do I get started?')
}}</gl-link>
</div>
<div class="gl-mt-3">
<span>{{ __('Error tracking is currently in') }}</span>
<gl-link target="_blank" :href="$options.openBetaLink">{{ __('Open Beta.') }}</gl-link>
</div>
</template>
</gl-empty-state>
</div>
......
......@@ -17604,9 +17604,6 @@ msgstr ""
msgid "Error tracking"
msgstr ""
 
msgid "Error tracking is currently in"
msgstr ""
msgid "Error updating %{issuableType}"
msgstr ""
 
......@@ -31582,9 +31579,6 @@ msgstr ""
msgid "Open"
msgstr ""
 
msgid "Open Beta."
msgstr ""
msgid "Open Selection"
msgstr ""
 
......@@ -367,19 +367,12 @@ describe('ErrorTrackingList', () => {
const emptyStatePrimaryDescription = emptyStateComponent.find('span', {
exactText: 'Monitor your errors directly in GitLab.',
});
const emptyStateSecondaryDescription = emptyStateComponent.find('span', {
exactText: 'Error tracking is currently in',
});
const emptyStateLinks = emptyStateComponent.findAll('a');
expect(emptyStateComponent.isVisible()).toBe(true);
expect(emptyStatePrimaryDescription.exists()).toBe(true);
expect(emptyStateSecondaryDescription.exists()).toBe(true);
expect(emptyStateLinks.at(0).attributes('href')).toBe(
'/help/operations/error_tracking.html#integrated-error-tracking',
);
expect(emptyStateLinks.at(1).attributes('href')).toBe(
'https://about.gitlab.com/handbook/product/gitlab-the-product/#open-beta',
);
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment