Commit 8bf4af15 authored by Jacques Erasmus's avatar Jacques Erasmus

Merge branch '330008-geo-beta-minor-ux-fix' into 'master'

Geo 2.0 Regression - Minor UX Fixes

See merge request gitlab-org/gitlab!61062
parents 0e4a6ea0 ce6535b0
......@@ -45,8 +45,12 @@ export default {
<gl-link
class="gl-text-gray-900 gl-font-weight-bold gl-text-decoration-underline"
:href="node.url"
>{{ node.url }} <gl-icon name="external-link" class="gl-ml-1"
/></gl-link>
target="_blank"
rel="noopener noreferrer"
>
{{ node.url }}
<gl-icon name="external-link" class="gl-ml-1" />
</gl-link>
</div>
<div v-if="node.primary" class="gl-display-flex gl-flex-direction-column gl-lg-my-5">
<span>{{ $options.i18n.internalUrl }}</span>
......
......@@ -8,7 +8,7 @@ import GeoNodeProgressBar from '../geo_node_progress_bar.vue';
export default {
name: 'GeoNodeVerificationInfo',
i18n: {
verificationInfo: s__('Geo|Verificaton information'),
verificationInfo: s__('Geo|Verification information'),
replicationHelpText: s__(
'Geo|Replicated data is verified with the secondary node(s) using checksums.',
),
......
......@@ -57,6 +57,7 @@ describe('GeoNodeCoreDetails', () => {
it('renders the Node Url correctly', () => {
expect(findNodeUrl().exists()).toBe(true);
expect(findNodeUrl().attributes('href')).toBe(MOCK_NODES[0].url);
expect(findNodeUrl().attributes('target')).toBe('_blank');
expect(findNodeUrl().text()).toBe(MOCK_NODES[0].url);
});
......
......@@ -14856,10 +14856,10 @@ msgstr ""
msgid "Geo|Verification failed - %{error}"
msgstr ""
msgid "Geo|Verification status"
msgid "Geo|Verification information"
msgstr ""
msgid "Geo|Verificaton information"
msgid "Geo|Verification status"
msgstr ""
msgid "Geo|Waiting for scheduler"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment