Skip to content
Snippets Groups Projects
Commit 55530746 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: lint

parent df14ef2b
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,8 @@ interface IRejectUserInput{
interface IGetUserSelectRegionPr{
message: string
promise: Promise<any>
rs: (region:any) => void
rj: (reject:IRejectUserInput) => void
rs: (region: any) => void
rj: (reject: IRejectUserInput) => void
}
export const CANCELLABLE_DIALOG = 'CANCELLABLE_DIALOG'
......@@ -360,7 +360,7 @@ export interface IUserLandmark {
export const overrideNehubaClickFactory = (apiService: AtlasViewerAPIServices, getMouseoverSegments: () => any [] ) => {
return (next: () => void) => {
let moSegments = getMouseoverSegments()
const moSegments = getMouseoverSegments()
if (!!moSegments && Array.isArray(moSegments) && moSegments.length > 0) {
const { rs } = apiService.getUserRegionSelectHandler() || {}
if (!!rs) {
......
......@@ -20,7 +20,7 @@ export class ActionDialog{
public sameLine: boolean = false
constructor(
@Optional() @Inject(MAT_DIALOG_DATA) data:any
@Optional() @Inject(MAT_DIALOG_DATA) data: any
){
const { config, content, template, actions = [] } = data || {}
const { sameLine = false } = config || {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment