mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	 13534262f4
			
		
	
	13534262f4
	
	
	
		
			
			* replace last two partials * cleanup * modify test to cover new component * only on ca role run new function * help with inconsistent failure on enterprise test * small changes to help with flaky test locally * add js docs
		
			
				
	
	
		
			16 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * @module FormFieldGroupsLoop
 | |
|  * FormFieldGroupsLoop components are used to show optional form fields, generally when setting up a secret engine.
 | |
|  *
 | |
|  * @example
 | |
|  * ```js
 | |
|  * <FormFieldGroupsLoop @model={{model}} @mode={{mode}}/>
 | |
|  * ```
 | |
|  * @param {object} model - the data model of the parent component
 | |
|  * @param {object} model - the mode: create show or edit.
 | |
|  */
 | |
| 
 | |
| import Component from '@glimmer/component';
 | |
| 
 | |
| export default class FormFieldGroupsLoop extends Component {}
 |