From 98aa82dbbc71957eb99795eca64b1be01babede3 Mon Sep 17 00:00:00 2001 From: Nikhil Mehta Date: Tue, 5 Dec 2023 16:35:23 +0530 Subject: [PATCH 1/2] fix: added missing titles in diffview of v2 --- pages/v2/diff.vue | 52 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 6 deletions(-) diff --git a/pages/v2/diff.vue b/pages/v2/diff.vue index 2e4875e..7708741 100644 --- a/pages/v2/diff.vue +++ b/pages/v2/diff.vue @@ -4,8 +4,45 @@
+
+

+ {{ lhsLabel }} +

+

+ {{ rhsLabel }} +

+
{ if (monacoDiffViewerEl) { this.monacoDiffEditor = monaco.editor.createDiffEditor( @@ -62,7 +102,7 @@ export default Vue.extend({ ...monacoEditorOptions, readOnly: true, wordWrap: 'on', - diffAlgorithm: 'advanced' + diffAlgorithm: 'advanced', } ) as any if (this.monacoDiffEditor) { From bd9dc746af25b65d7ae4ce9e3041f02c7ec57dd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:11:22 +0000 Subject: [PATCH 2/2] fix(deps): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 287e9ad..76cb93a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: create release on tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # This action generates changelog which then the release action consumes - name: Conventional Changelog Action