mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* delete vertical bar grouped * delete individual routes and tabs for client count types * add nav-bar component to hide tab in production * first round of test updates * skip client list tests for now * reogranize overview tests * fix css color for chart * change chart styling from grid to flex * add split view for running total chart * update latest colors from designs * add changelog * rename yield blocks to be more flexible * add conditional for description * delete routes
16 lines
493 B
TypeScript
16 lines
493 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// TODO this component just exists while the client-list tab is in development for the 1.21 release
|
|
// Unless more is added to it, it can be removed when the `client list` tab+route is unhidden
|
|
import Component from '@glimmer/component';
|
|
import config from 'vault/config/environment';
|
|
|
|
export default class NavBar extends Component {
|
|
get isNotProduction() {
|
|
return config.environment !== 'production';
|
|
}
|
|
}
|