Dedications default to 'in honor of'
This commit is contained in:
parent
6bbdfc4ebc
commit
976dede3eb
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ function view(state) {
|
||||||
, type: 'radio'
|
, type: 'radio'
|
||||||
, id: radioId1
|
, id: radioId1
|
||||||
, value: 'honor'
|
, value: 'honor'
|
||||||
, selected: !data.dedication_type || data.dedication_type === 'honor'
|
, checked: !data.dedication_type || data.dedication_type === 'honor'
|
||||||
}})
|
}})
|
||||||
, h('label', {props: {htmlFor: radioId1}}, I18n.t('nonprofits.donate.dedication.in_honor_label'))
|
, h('label', {props: {htmlFor: radioId1}}, I18n.t('nonprofits.donate.dedication.in_honor_label'))
|
||||||
])
|
])
|
||||||
|
@ -31,7 +31,7 @@ function view(state) {
|
||||||
, type: 'radio'
|
, type: 'radio'
|
||||||
, value: 'memory'
|
, value: 'memory'
|
||||||
, id: radioId2
|
, id: radioId2
|
||||||
, selected: data.dedication_type === 'memory'
|
, checked: data.dedication_type === 'memory'
|
||||||
}})
|
}})
|
||||||
, h('label', {props: {htmlFor: radioId2}}, I18n.t('nonprofits.donate.dedication.in_memory_label'))
|
, h('label', {props: {htmlFor: radioId2}}, I18n.t('nonprofits.donate.dedication.in_memory_label'))
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in a new issue