make userDisplayName optional
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
export interface IElixFormsComponentProperties {
|
export interface IElixFormsComponentProperties {
|
||||||
isDarkTheme?: boolean;
|
isDarkTheme?: boolean;
|
||||||
userDisplayName: string;
|
userDisplayName?: string;
|
||||||
additionalFieldsJson?: string;
|
additionalFieldsJson?: string;
|
||||||
|
|
||||||
// Layout Properties
|
// Layout Properties
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ import config from './config.json';
|
|||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<RecuperoPropostaCctDaContrattiComponent
|
<RecuperoPropostaCctDaContrattiComponent
|
||||||
userDisplayName="XYZ"
|
|
||||||
|
|
||||||
moduleName={config.component.moduleName}
|
moduleName={config.component.moduleName}
|
||||||
headerTitle={config.component.headerTitle}
|
headerTitle={config.component.headerTitle}
|
||||||
headerHeroImageSrc={config.component.headerHeroImageSrc}
|
headerHeroImageSrc={config.component.headerHeroImageSrc}
|
||||||
|
|||||||
Reference in New Issue
Block a user