From 88b8e7ce7193d634b13f03d20b29a3efad13283f Mon Sep 17 00:00:00 2001 From: Rafael Dohms Date: Mon, 1 May 2023 20:28:25 +0200 Subject: [PATCH] Disable User title A title set by the user will override the text we put into the title and break the plugin. Using a new flag available now we are disabling it. --- CHANGELOG.md | 1 + src/actions/ViewReviewRequests.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba37f26..d82dda0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Prefix your message with one of the following: - [Fixed] Updated SDPI CSS - [Changed] Improved handling of Settings update - [Added] Support for GitHub Enterprise +- [Added] Disabled user title to avoid overrides ## v0.1.0 - 2023-04-08 diff --git a/src/actions/ViewReviewRequests.ts b/src/actions/ViewReviewRequests.ts index 97b0317..5e99132 100644 --- a/src/actions/ViewReviewRequests.ts +++ b/src/actions/ViewReviewRequests.ts @@ -175,5 +175,6 @@ const action = new ViewReviewRequests({ action.encoder = new Encoder(); action.keyPad = false; +action.enableUserTitle = false; export default action;