Skip to content

Commit

Permalink
Merge pull request #129 from trganda/develop
Browse files Browse the repository at this point in the history
Fix Typo Error in README
  • Loading branch information
trganda authored Jun 26, 2024
2 parents f8c6e71 + eb96eef commit 16d841e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export default class AttachmentManagementPlugin extends Plugin {

this.app.workspace.onLayoutReady(() => {

console.log(`${this.manifest.name} got onLayoutReady`);

this.addCommand({
id: "attachment-management-rearrange-all-links",
name: "Rearrange all linked attachments",
Expand Down Expand Up @@ -154,7 +152,7 @@ export default class AttachmentManagementPlugin extends Plugin {
this.registerEvent(
this.app.vault.on("create", async (file: TAbstractFile) => {
debugLog("on create event - file:", file.path);
// only processing create of file, ignore folder creation
// only processing creatation of file, ignore folder creation
if (!(file instanceof TFile)) {
return;
}
Expand Down
1 change: 0 additions & 1 deletion src/model/override.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export class OverrideModal extends Modal {
attachmentPath: this.setting.attachmentPath,
attachFormat: this.setting.attachFormat,
});
console.log(this.setting.extensionOverride);
this.onOpen();
});
});
Expand Down

0 comments on commit 16d841e

Please sign in to comment.