3e9bb12dc2
* 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 {}
|