Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed Jun 4, 2021
1 parent d0bf4e2 commit 14025de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33104,7 +33104,7 @@ function ItemForm({ addItems }) {
case "file":
return [linkTo(draggable.file)];
case "files":
return draggable.files.map(linkTo);
return draggable.files.map((f) => linkTo(f));
case "link":
let link = draggable.file
? linkTo(draggable.file, obsidian.parseLinktext(draggable.linktext).subpath)
Expand All @@ -33118,7 +33118,7 @@ function ItemForm({ addItems }) {
default:
const text = forcePlaintext ? plain || html : getMarkdown(transfer);
// Split lines and strip leading bullets/task indicators
const lines = (text || html || uris || plain || "")
const lines = (text || uris || plain || html || "")
.split(/\r\n?|\n/)
.map(fixBulletsAndLInks);
return lines.filter((line) => line);
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.4.3",
"version": "0.4.4",
"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.4.3",
"version": "0.4.4",
"minAppVersion": "0.11.13",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
Expand Down

0 comments on commit 14025de

Please sign in to comment.