Skip to content

Commit

Permalink
fix: minor lint issueas
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and alberto-art3ch committed May 31, 2024
1 parent 4e48bc9 commit d55f799
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class CreateFloatingRateComponent implements OnInit {
private dateUtils: Dates,
private dialog: MatDialog,
private settingsService: SettingsService,
private translateService:TranslateService) { }
private translateService: TranslateService) { }

/**
* Sets the floating rate periods table.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class EditFloatingRateComponent implements OnInit {
private dateUtils: Dates,
private dialog: MatDialog,
private settingsService: SettingsService,
private translateService:TranslateService) {
private translateService: TranslateService) {
this.route.data.subscribe((data: { floatingRate: any }) => {
this.floatingRateData = data.floatingRate;
this.floatingRatePeriodsData = data.floatingRate.ratePeriods ? data.floatingRate.ratePeriods : [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class AdvancePaymentAllocationTabComponent implements OnInit {

constructor(private dialog: MatDialog,
private advancedPaymentStrategy: AdvancedPaymentStrategy,
private translateService:TranslateService) { }
private translateService: TranslateService) { }

ngOnInit(): void {
if (this.advancedCreditAllocation) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class CreateBucketComponent implements OnInit {
private router: Router,
private route: ActivatedRoute,
public dialog: MatDialog,
private translateService:TranslateService) {
private translateService: TranslateService) {
this.route.data.subscribe((data: { delinquencyRanges: any }) => {
this.delinquencyRangesData = data.delinquencyRanges;
this.delinquencyRangesData = this.delinquencyRangesData.sort(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class EditBucketComponent implements OnInit {
private router: Router,
private route: ActivatedRoute,
public dialog: MatDialog,
private translateService:TranslateService) {
private translateService: TranslateService) {
this.route.data.subscribe((data: { delinquencyBucket: any, delinquencyRanges: any }) => {
this.delinquencyRangesData = data.delinquencyRanges;
this.rangesDataSource = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class EditTaxGroupComponent implements OnInit {
private dateUtils: Dates,
public dialog: MatDialog,
private settingsService: SettingsService,
private translateService:TranslateService) {
private translateService: TranslateService) {
this.route.data.subscribe((data: { taxGroup: any }) => {
this.taxGroupData = data.taxGroup;
this.taxComponentOptions = this.taxGroupData.taxComponents;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ViewProductMixComponent implements OnInit {
private dialog: MatDialog,
private productsService: ProductsService,
private router: Router,
private translateService:TranslateService ) {
private translateService: TranslateService ) {
this.route.data.subscribe((data: { productMix: any }) => {
this.productMixData = data.productMix;
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class SavingProductChargesStepComponent implements OnInit {

pristine = true;

constructor(public dialog: MatDialog, private translateService:TranslateService) {
constructor(public dialog: MatDialog, private translateService: TranslateService) {
}

ngOnInit() {
Expand Down
6 changes: 3 additions & 3 deletions src/assets/translations/es-MX.json
Original file line number Diff line number Diff line change
Expand Up @@ -1640,13 +1640,13 @@
"Is Active": "Está activo",
"Is Active Job": "es un proceso activo",
"Is Arrears recognization based on original schedule": "¿El reconocimiento de atrasos se basa en el calendario original?",
"Is Base Lending Rate": "¿Es la tasa base de Créditos?",
"Is Base Lending Rate": "¿Es la tasa base de Créditos",
"Is Cash Payment": "es pago en efectivo",
"Is Dependent": "Es dependiente",
"Is Dependent?": "¿Es dependiente?",
"Is Differential": "es diferencial",
"Is Differential": "¿Es diferencial",
"Is Equal Amortization": "¿Amortizaciones iguales?",
"Is Floating Rate": "¿Es tasa variable?",
"Is Floating Rate": "¿Es tasa variable",
"Is Floating calculation allowed?": "¿Se permite el cálculo flotante?",
"Is Interest Posting required on closure date": "¿Se requiere la publicación de intereses en la fecha de cierre?",
"Is Linked to floating interest rates?": "¿Está vinculado a tasas de interés flotantes?",
Expand Down

0 comments on commit d55f799

Please sign in to comment.