Skip to content

Commit

Permalink
Shorter summary #87
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederisk committed Jan 22, 2024
1 parent 4647fe3 commit b4ee7d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/export_command/wikimedia_function/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ export function postPageFactory() {
let wikiSummary: string | undefined = await vscode.window.showInputBox({
ignoreFocusOut: true,
prompt: 'Enter the summary of this edit action.',
placeHolder: '// Edit via Wikitext Extension for VSCode'
placeHolder: '// via Wikitext Extension for VSCode'
});
if (wikiSummary === undefined) {
return undefined;
}
wikiSummary = `${wikiSummary} // Edit via Wikitext Extension for VSCode`.trim();
wikiSummary = `${wikiSummary} // via Wikitext Extension for VSCode`.trim();
const barMessage: vscode.Disposable = vscode.window.setStatusBarMessage("Wikitext: Posting...");
try {
const args: Record<string, string> = {
Expand Down

0 comments on commit b4ee7d7

Please sign in to comment.