Remove period from left pane toggle tooltip

This commit is contained in:
Michael Redman 2022-07-05 06:06:45 -05:00 committed by GitHub
parent ef49d20470
commit d1a763feef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,8 +11,8 @@ export default class LeftPaneToggleWidget extends ButtonWidget {
: "bx-chevrons-right";
this.settings.title = isLeftPaneVisible
? "Hide panel."
: "Open panel.";
? "Hide panel"
: "Open panel";
this.settings.command = isLeftPaneVisible
? "hideLeftPane"