contract changes component naming typo

This commit is contained in:
merelendor 2024-12-18 12:50:19 +03:00
parent dbd8ea72f5
commit ec72fce3c0

View File

@ -171,7 +171,7 @@ class FixLastPayment extends React.Component
}
}
class DateOffestType extends React.Component
class DateOffsetType extends React.Component
{
constructor(props)
{
@ -795,7 +795,7 @@ export default class Options extends React.Component
<FixLastPayment option={ options.fix_last_payment_available } onOption={ this._handle_onFixLastPaymentChange } />
) }
{ options !== undefined && options !== null && options.date_offset_type !== undefined && options.date_offset_type !== null && options.date_offset_type.visible && (
<DateOffestType option={ options.date_offset_type } onOption={ this._handle_onDateOffsetTypeChange } />
<DateOffsetType option={ options.date_offset_type } onOption={ this._handle_onDateOffsetTypeChange } />
) }
{ options !== undefined && options !== null && options.period_new !== undefined && options.period_new !== null && options.period_new.visible && (
<PeriodSelector option={ options.period_new } onOption={ this._handle_onPeriodChange } />