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 e04c52a9a949051a077488c0cbf00b3265d0ecbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:11:25 +0000 Subject: [PATCH 2/2] fix(deps): bump TriPSs/conventional-changelog-action from 3 to 5 Bumps [TriPSs/conventional-changelog-action](https://github.com/tripss/conventional-changelog-action) from 3 to 5. - [Release notes](https://github.com/tripss/conventional-changelog-action/releases) - [Changelog](https://github.com/TriPSs/conventional-changelog-action/blob/releases/v5/CHANGELOG.md) - [Commits](https://github.com/tripss/conventional-changelog-action/compare/v3...v5) --- updated-dependencies: - dependency-name: TriPSs/conventional-changelog-action 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..d16b47a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: # This action generates changelog which then the release action consumes - name: Conventional Changelog Action id: changelog - uses: TriPSs/conventional-changelog-action@v3 + uses: TriPSs/conventional-changelog-action@v5 with: github-token: ${{ secrets.github_token }} skip-commit: 'true'