mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			408 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			408 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Component from '@ember/component';
 | |
| import { computed } from '@ember/object';
 | |
| import layout from '../templates/components/upgrade-page';
 | |
| 
 | |
| export default Component.extend({
 | |
|   layout,
 | |
|   title: 'Vault Enterprise',
 | |
|   featureName: computed('title', function () {
 | |
|     const title = this.title;
 | |
|     return title === 'Vault Enterprise' ? 'this feature' : title;
 | |
|   }),
 | |
|   minimumEdition: 'Vault Enterprise',
 | |
| });
 | 
