Skip to content

Commit

Permalink
fix #228 removed semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
TerranceKhumalo-absa authored and wajda committed Sep 18, 2024
1 parent 5a4a7a6 commit 4a46843
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@
* limitations under the License.
*/

import { Component, Inject, OnInit } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
import { OperationAttributeLineageType } from 'spline-api';
import { BaseComponent } from 'spline-utils';
import { Component, Inject, OnInit } from '@angular/core'
import { MAT_DIALOG_DATA } from '@angular/material/dialog'
import { OperationAttributeLineageType } from 'spline-api'
import { BaseComponent } from 'spline-utils'

import { AttributeLineageDialog } from './attribute-lineage-dialog.models';
import { AttributeLineageDialog } from './attribute-lineage-dialog.models'

@Component({
selector: 'plan-attribute-lineage-dialog',
templateUrl: './attribute-lineage-dialog.component.html',
styleUrls: ['./attribute-lineage-dialog.component.scss'],
})
export class AttributeLineageDialogComponent extends BaseComponent implements OnInit {
isInitialized = false;
readonly dialogTitle: string;
isInitialized = false
readonly dialogTitle: string

constructor(@Inject(MAT_DIALOG_DATA) public data: AttributeLineageDialog.Data) {
super();
super()

this.dialogTitle =
data.lineageType === OperationAttributeLineageType.Lineage
? 'PLANS.ATTR_LINEAGE_DETAILS__DIALOG__TITLE__LINEAGE'
: 'PLANS.ATTR_LINEAGE_DETAILS__DIALOG__TITLE__IMPACT';
: 'PLANS.ATTR_LINEAGE_DETAILS__DIALOG__TITLE__IMPACT'
}

ngOnInit(): void {
this.isInitialized = true;
this.isInitialized = true
}
}

0 comments on commit 4a46843

Please sign in to comment.