Skip to content

Commit ed74e73

Browse files
committed
Remove logs
1 parent 09059f2 commit ed74e73

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-jira-issue",
33
"name": "Jira Issue",
4-
"version": "1.39.1",
4+
"version": "1.39.2",
55
"minAppVersion": "0.12.0",
66
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
77
"author": "marc0l92",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-jira-issue",
3-
"version": "1.39.1",
3+
"version": "1.39.2",
44
"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.",
55
"main": "src/main.js",
66
"scripts": {

src/searchView.ts

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ export class SearchView {
144144
columnExtra = column.slice(1).toUpperCase()
145145
column = ESearchColumnsTypes.CUSTOM_FIELD
146146
if (SettingsData.cache.columns.indexOf(columnExtra) === -1) {
147-
console.log(SettingsData.cache.columns, columnExtra)
148147
throw new Error(`Custom field ${columnExtra} not found`)
149148
}
150149
}

src/settings.ts

-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ export class JiraIssueSettingTab extends PluginSettingTab {
365365
.onChange(async value => {
366366
newAccount.color = value.replace(/[^#0-9A-Fa-f]/g, '')
367367
if (newAccount.color[0] != '#') newAccount.color = '#' + newAccount.color
368-
console.log(newAccount.color)
369368
colorInput.setAttr('style', 'border-left: 5px solid ' + newAccount.color)
370369
})
371370
colorTextComponent = text

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@
4141
"1.37.0": "0.12.0",
4242
"1.38.0": "0.12.0",
4343
"1.39.0": "0.12.0",
44-
"1.39.1": "0.12.0"
44+
"1.39.1": "0.12.0",
45+
"1.39.2": "0.12.0"
4546
}

0 commit comments

Comments
 (0)