Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0l92 committed Dec 3, 2022
1 parent a619648 commit 34dbe56
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-jira-issue",
"name": "Jira Issue",
"version": "1.34.0",
"version": "1.35.0",
"minAppVersion": "0.12.0",
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
"author": "marc0l92",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-jira-issue",
"version": "1.34.0",
"version": "1.35.0",
"description": "This plugin allows you to track the progress of [Atlassian Jira](https://www.atlassian.com/software/jira) issues from your [Obsidian](https://obsidian.md/) notes.",
"main": "src/main.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src/rendering/searchFenceRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { SettingsData } from "../settings"
import { RenderingCommon as RC } from "./renderingCommon"


async function renderSearchResults(rootEl: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): void {
async function renderSearchResults(rootEl: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): Promise<void> {
searchView.account = searchResults.account
if (searchView.type === ESearchResultsRenderingTypes.LIST) {
renderSearchResultsList(rootEl, searchResults)
Expand All @@ -18,7 +18,7 @@ async function renderSearchResults(rootEl: HTMLElement, searchView: SearchView,
}


async function renderSearchResultsTable(rootEl: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): void {
async function renderSearchResultsTable(rootEl: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): Promise<void> {
const table = createEl('table', { cls: `table is-bordered is-striped is-narrow is-hoverable is-fullwidth ${RC.getTheme()}` })
renderSearchResultsTableHeader(table, searchView)
await renderSearchResultsTableBody(table, searchView, searchResults)
Expand Down Expand Up @@ -51,7 +51,7 @@ function renderSearchResultsTableHeader(table: HTMLElement, searchView: SearchVi
}
}

async function renderSearchResultsTableBody(table: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): void {
async function renderSearchResultsTableBody(table: HTMLElement, searchView: SearchView, searchResults: IJiraSearchResults): Promise<void> {
const tbody = createEl('tbody', { parent: table })
for (let issue of searchResults.issues) {
issue = createProxy(issue)
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@
"1.31.0": "0.12.0",
"1.32.0": "0.12.0",
"1.33.0": "0.12.0",
"1.34.0": "0.12.0"
"1.34.0": "0.12.0",
"1.35.0": "0.12.0"
}

0 comments on commit 34dbe56

Please sign in to comment.