Skip to content

Commit

Permalink
alphabetize better (#5418)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilluminate authored Oct 24, 2024
1 parent 29c9c46 commit c940b82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions clients/fides-js/docs/interfaces/FidesExperienceConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,16 @@ List of region codes that apply.

***

### translations
### show\_layer1\_notices?

> **translations**: `Record`\<`string`, `any`\>[]
> `optional` **show\_layer1\_notices**: `boolean`
List of all available translations for the current experience.
On Banner and Modal components, this option corresponds to the "Add privacy notices to banner" configuration toggle. When enabled, the list of privacy notice names will appear&mdash;comma separated&mdash;on the banner, without forcing the user to open the modal to know which are applicable.

***

### show\_layer1\_notices?
### translations

> `optional` **show\_layer1\_notices**: `boolean`
> **translations**: `Record`\<`string`, `any`\>[]
On Banner and Modal components, this option corresponds to the "Add privacy notices to banner" configuration toggle. When enabled, the list of privacy notice names will appear&mdash;comma separated&mdash;on the banner, without forcing the user to open the modal to know which are applicable.
List of all available translations for the current experience.
8 changes: 4 additions & 4 deletions clients/fides-js/src/docs/fides-experience-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ export interface FidesExperienceConfig {
regions?: Array<string>;

/**
* List of all available translations for the current experience.
* On Banner and Modal components, this option corresponds to the "Add privacy notices to banner" configuration toggle. When enabled, the list of privacy notice names will appear&mdash;comma separated&mdash;on the banner, without forcing the user to open the modal to know which are applicable.
*/
translations: Array<Record<string, any>>;
show_layer1_notices?: boolean;

/**
* On Banner and Modal components, this option corresponds to the "Add privacy notices to banner" configuration toggle. When enabled, the list of privacy notice names will appear&mdash;comma separated&mdash;on the banner, without forcing the user to open the modal to know which are applicable.
* List of all available translations for the current experience.
*/
show_layer1_notices?: boolean;
translations: Array<Record<string, any>>;

/**
* @internal
Expand Down

0 comments on commit c940b82

Please sign in to comment.