From 7d84c5fe37b35b1b695674d16947d758c81711a7 Mon Sep 17 00:00:00 2001 From: Michael Brenan Date: Thu, 22 Apr 2021 03:39:47 -0500 Subject: [PATCH] 0.2.14 --- manifest.json | 2 +- package.json | 2 +- src/main.ts | 4 ++-- versions.json | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index 1d2375db..892c6895 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "dataview", "name": "Dataview", - "version": "0.2.13", + "version": "0.2.14", "minAppVersion": "0.11.10", "description": "Complex data views for the data-obsessed.", "author": "Michael Brenan ", diff --git a/package.json b/package.json index 6191f836..762f8376 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-dataview", - "version": "0.2.13", + "version": "0.2.14", "description": "Advanced data views for Obsidian.md.", "main": "main.js", "scripts": { diff --git a/src/main.ts b/src/main.ts index 9ace599b..03b586ee 100644 --- a/src/main.ts +++ b/src/main.ts @@ -161,10 +161,10 @@ class DataviewSettingsTab extends PluginSettingTab { .setValue("" + this.plugin.settings.refreshInterval) .onChange(async (value) => { let parsed = parseInt(value); - if (isNaN(parsed)) continue; + if (isNaN(parsed)) return; parsed = (parsed < 100) ? 100 : parsed; await this.plugin.updateSettings({ refreshInterval: parsed }); - } + })); } } diff --git a/versions.json b/versions.json index a8fb5ab6..621579f4 100644 --- a/versions.json +++ b/versions.json @@ -24,5 +24,6 @@ "0.2.10": "0.11.10", "0.2.11": "0.11.10", "0.2.12": "0.11.10", - "0.2.13": "0.11.10" + "0.2.13": "0.11.10", + "0.2.14": "0.11.10" }