Commit 4909c288 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'tc-node-projects-can-be-local' into 'master'

Geo: Don't show external link icon for current node

See merge request gitlab-org/gitlab-ee!9130
parents 59e0801e f5bdc0be
...@@ -66,7 +66,7 @@ export default { ...@@ -66,7 +66,7 @@ export default {
<div class="geo-node-actions"> <div class="geo-node-actions">
<div v-if="isSecondaryNode" class="node-action-container"> <div v-if="isSecondaryNode" class="node-action-container">
<a :href="node.geoProjectsUrl" class="btn btn-sm btn-node-action" target="_blank"> <a :href="node.geoProjectsUrl" class="btn btn-sm btn-node-action" target="_blank">
<icon name="external-link" /> {{ __('Open projects') }} <icon v-if="!node.current" name="external-link" /> {{ __('Open projects') }}
</a> </a>
</div> </div>
<template v-if="nodeActionsAllowed"> <template v-if="nodeActionsAllowed">
......
---
title: 'Geo: Don''t show external link icon on current node'
merge_request: 9130
author:
type: changed
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