Browse Source

chore: add suffix to consul version in sidenav (#19711)

pull/19740/head
Valeriia Ruban 1 year ago committed by GitHub
parent
commit
af35d7d901
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ui/packages/consul-ui/app/components/hashicorp-consul/index.hbs
  2. 6
      ui/packages/consul-ui/app/components/hashicorp-consul/index.js

4
ui/packages/consul-ui/app/components/hashicorp-consul/index.hbs

@ -149,7 +149,7 @@
<disclosure.Menu as |panel|>
<panel.Menu as |menu|>
<menu.Separator>
Consul v{{env 'CONSUL_VERSION'}}
Consul v{{this.consulVersion}}
</menu.Separator>
<menu.Item class='docs-link'>
<menu.Action @href={{env 'CONSUL_DOCS_URL'}} @external={{true}}>
@ -199,7 +199,7 @@
<:content-info>
<p>
Consul v{{env 'CONSUL_VERSION'}}
Consul v{{this.consulVersion}}
</p>
{{{concat '<!-- ' (env 'CONSUL_GIT_SHA') '-->'}}}
</:content-info>

6
ui/packages/consul-ui/app/components/hashicorp-consul/index.js

@ -8,4 +8,10 @@ import { inject as service } from '@ember/service';
export default class HashiCorpConsul extends Component {
@service('flashMessages') flashMessages;
@service('env') env;
get consulVersion() {
const suffix = !['', 'oss'].includes(this.env.var('CONSUL_BINARY_TYPE')) ? '+ent' : '';
return `${this.env.var('CONSUL_VERSION')}${suffix}`;
}
}

Loading…
Cancel
Save