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 { ...@@ -45,8 +45,12 @@ export default {
<gl-link <gl-link
class="gl-text-gray-900 gl-font-weight-bold gl-text-decoration-underline" class="gl-text-gray-900 gl-font-weight-bold gl-text-decoration-underline"
:href="node.url" :href="node.url"
>{{ node.url }} <gl-icon name="external-link" class="gl-ml-1" target="_blank"
/></gl-link> rel="noopener noreferrer"
>
{{ node.url }}
<gl-icon name="external-link" class="gl-ml-1" />
</gl-link>
</div> </div>
<div v-if="node.primary" class="gl-display-flex gl-flex-direction-column gl-lg-my-5"> <div v-if="node.primary" class="gl-display-flex gl-flex-direction-column gl-lg-my-5">
<span>{{ $options.i18n.internalUrl }}</span> <span>{{ $options.i18n.internalUrl }}</span>
......
...@@ -8,7 +8,7 @@ import GeoNodeProgressBar from '../geo_node_progress_bar.vue'; ...@@ -8,7 +8,7 @@ import GeoNodeProgressBar from '../geo_node_progress_bar.vue';
export default { export default {
name: 'GeoNodeVerificationInfo', name: 'GeoNodeVerificationInfo',
i18n: { i18n: {
verificationInfo: s__('Geo|Verificaton information'), verificationInfo: s__('Geo|Verification information'),
replicationHelpText: s__( replicationHelpText: s__(
'Geo|Replicated data is verified with the secondary node(s) using checksums.', 'Geo|Replicated data is verified with the secondary node(s) using checksums.',
), ),
......
...@@ -57,6 +57,7 @@ describe('GeoNodeCoreDetails', () => { ...@@ -57,6 +57,7 @@ describe('GeoNodeCoreDetails', () => {
it('renders the Node Url correctly', () => { it('renders the Node Url correctly', () => {
expect(findNodeUrl().exists()).toBe(true); expect(findNodeUrl().exists()).toBe(true);
expect(findNodeUrl().attributes('href')).toBe(MOCK_NODES[0].url); expect(findNodeUrl().attributes('href')).toBe(MOCK_NODES[0].url);
expect(findNodeUrl().attributes('target')).toBe('_blank');
expect(findNodeUrl().text()).toBe(MOCK_NODES[0].url); expect(findNodeUrl().text()).toBe(MOCK_NODES[0].url);
}); });
......
...@@ -14856,10 +14856,10 @@ msgstr "" ...@@ -14856,10 +14856,10 @@ msgstr ""
msgid "Geo|Verification failed - %{error}" msgid "Geo|Verification failed - %{error}"
msgstr "" msgstr ""
msgid "Geo|Verification status" msgid "Geo|Verification information"
msgstr "" msgstr ""
msgid "Geo|Verificaton information" msgid "Geo|Verification status"
msgstr "" msgstr ""
msgid "Geo|Waiting for scheduler" 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