summaryrefslogtreecommitdiffhomepage
path: root/src/tool-modal.ts
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-03-24 17:30:44 +0900
committerAdam Malczewski <[email protected]>2026-03-24 17:30:44 +0900
commita5f54269f6b7ace71c4509fb8105993a7f064e63 (patch)
treedfdfd0349cbfa357c02d26d02edbf3d6fe689872 /src/tool-modal.ts
parent3690c97ceaf8a20bb2c6d38bd600e5ae8bc2dac6 (diff)
downloadai-pulse-obsidian-plugin-a5f54269f6b7ace71c4509fb8105993a7f064e63.tar.gz
ai-pulse-obsidian-plugin-a5f54269f6b7ace71c4509fb8105993a7f064e63.zip
rename project
Diffstat (limited to 'src/tool-modal.ts')
-rw-r--r--src/tool-modal.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tool-modal.ts b/src/tool-modal.ts
index c1b1522..4da8edb 100644
--- a/src/tool-modal.ts
+++ b/src/tool-modal.ts
@@ -1,11 +1,11 @@
import { Modal, Setting } from "obsidian";
-import type AIOrganizer from "./main";
+import type AIPulse from "./main";
import { TOOL_REGISTRY } from "./tools";
export class ToolModal extends Modal {
- private plugin: AIOrganizer;
+ private plugin: AIPulse;
- constructor(plugin: AIOrganizer) {
+ constructor(plugin: AIPulse) {
super(plugin.app);
this.plugin = plugin;
}
@@ -13,13 +13,13 @@ export class ToolModal extends Modal {
onOpen(): void {
const { contentEl } = this;
contentEl.empty();
- contentEl.addClass("ai-organizer-tool-modal");
+ contentEl.addClass("ai-pulse-tool-modal");
this.setTitle("AI Tools");
contentEl.createEl("p", {
text: "Enable tools to give the AI access to your vault. Changes take effect on the next message.",
- cls: "ai-organizer-tool-modal-desc",
+ cls: "ai-pulse-tool-modal-desc",
});
for (const tool of TOOL_REGISTRY) {