Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKless committed Jan 10, 2024
1 parent 23706b9 commit 0461383
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ class OldNxGraphBrowser(
} else {
""
}
} ?: ""
}
?: ""

val originalGraphHtml = File(fullPath).readText(Charsets.UTF_8)
val transformedGraphHtml =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class ShowNxProjectConfigurationAction : DumbAwareAction(AllIcons.Actions.EditSo
?.workspace
?.projects
?.get(selectedNxProject)
} ?: return@launch
}
?: return@launch

ApplicationManager.getApplication().invokeLater {
val projectFilePath =
Expand All @@ -106,7 +107,8 @@ class ShowNxProjectConfigurationAction : DumbAwareAction(AllIcons.Actions.EditSo
psiFile,
nxTarget,
nxTargetConfiguration
) ?: return@invokeLater
)
?: return@invokeLater

val editor = fileEditorManager.selectedTextEditor

Expand Down
2 changes: 1 addition & 1 deletion apps/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -816,4 +816,4 @@
}
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,4 @@ export class NxProjectTreeProvider extends AbstractTreeProvider<NxTreeItem> {
commands.executeCommand('revealInExplorer', selection.resourceUri);
}
}


}

0 comments on commit 0461383

Please sign in to comment.