@@ -324,7 +324,7 @@ export const CreateERModelRelationModal = ({
324
324
< Modal
325
325
title = {
326
326
< div className = "footer-parent-div" >
327
- < p className = "ermodelrelation-title" > ERModelRelation parameters </ p >
327
+ < p className = "ermodelrelation-title" > ER-Model-Relation Parameters </ p >
328
328
< div >
329
329
< Button onClick = { onCancelSelect } className = "cancel-btn" size = "large" >
330
330
Cancel
@@ -352,7 +352,7 @@ export const CreateERModelRelationModal = ({
352
352
< p className = "all-content-heading" > Table 2</ p >
353
353
< p className = "all-information" > { table2NameBusiness } </ p >
354
354
< div className = "techNameDisplay" > { table2NameTech !== table2NameBusiness && table2NameTech } </ div >
355
- < p className = "all-content-heading" > ERModelRelation name</ p >
355
+ < p className = "all-content-heading" > ER-Model-Relation name</ p >
356
356
< Form
357
357
form = { form }
358
358
layout = "vertical"
@@ -368,15 +368,15 @@ export const CreateERModelRelationModal = ({
368
368
rules = { [
369
369
{
370
370
required : true ,
371
- message : `ERModelRelation name is required.` ,
371
+ message : `ER-Model-Relation name is required.` ,
372
372
} ,
373
373
{
374
374
validator : ( _ , value ) =>
375
375
checkDuplicateERModelRelation ( getSearchResultsERModelRelations , value ?. trim ( ) ) . then ( ( result ) => {
376
376
return result === true && ! isEditing
377
377
? Promise . reject (
378
378
new Error (
379
- 'This ermodelrelation name already exists. A unique name for each ermodelrelation is required.' ,
379
+ 'This ER-Model-Relation name already exists. A unique name for each ER-Model-Relation is required.' ,
380
380
) ,
381
381
)
382
382
: Promise . resolve ( ) ;
@@ -398,11 +398,11 @@ export const CreateERModelRelationModal = ({
398
398
< Button type = "link" className = "add-btn-link" onClick = { handleAdd } >
399
399
< PlusOutlined /> Add Row
400
400
</ Button >
401
- < p className = "all-content-heading" > ERModelRelation details</ p >
401
+ < p className = "all-content-heading" > ER-Model-Relation details</ p >
402
402
< Form . Item style = { { margin : 0 } } name = "ermodelrelationDetails" >
403
403
< TextArea
404
404
className = "ermodelrelation-details-ta"
405
- placeholder = "Please enter ermodelrelation details here"
405
+ placeholder = "Please enter ER-Model-Relation details here"
406
406
onChange = { ( e ) => setDetails ( e . target . value ) }
407
407
/>
408
408
</ Form . Item >
0 commit comments