Skip to content

Commit

Permalink
Use correct hover source
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed Apr 26, 2021
1 parent 41c3d70 commit 43e7a99
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23610,7 +23610,7 @@ const Kanban = ({ filePath, view, dataBridge }) => {
if (targetEl.hasClass("internal-link")) {
view.app.workspace.trigger("hover-link", {
event: e.nativeEvent,
source: "kanban",
source: "kanban-plugin",
hoverParent: view,
targetEl,
linktext: targetEl.getAttr("href"),
Expand Down
2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "0.0.12",
"version": "0.0.13",
"minAppVersion": "0.11.13",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "0.0.12",
"version": "0.0.13",
"minAppVersion": "0.11.13",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Kanban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export const Kanban = ({ filePath, view, dataBridge }: KanbanProps) => {
if (targetEl.hasClass("internal-link")) {
view.app.workspace.trigger("hover-link", {
event: e.nativeEvent,
source: "kanban",
source: "kanban-plugin",
hoverParent: view,
targetEl,
linktext: targetEl.getAttr("href"),
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.0.13": "0.11.13",
"0.0.12": "0.11.13",
"0.0.11": "0.11.13",
"0.0.10": "0.11.13",
Expand Down

0 comments on commit 43e7a99

Please sign in to comment.