mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: MPL-2.0
 | |
|  */
 | |
| 
 | |
| import Component from '@glimmer/component';
 | |
| 
 | |
| export default class UpgradePage extends Component {
 | |
|   get minimumEdition() {
 | |
|     return this.args.minimumEdition || 'Vault Enterprise';
 | |
|   }
 | |
|   get title() {
 | |
|     return this.args.title || 'Vault Enterprise';
 | |
|   }
 | |
| 
 | |
|   get featureName() {
 | |
|     return this.title === 'Vault Enterprise' ? 'this feature' : this.title;
 | |
|   }
 | |
| }
 | 
