Skip to content

Commit

Permalink
reduce the size of the textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhb committed May 22, 2023
1 parent 10a9b96 commit 0f269a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,8 @@ class OmnivoreSettingTab extends PluginSettingTab {
this.plugin.settings.frontMatterVariables = JSON.parse(value);
await this.plugin.saveSettings();
});
text.inputEl.setAttr("rows", 5);
text.inputEl.setAttr("cols", 60);
text.inputEl.setAttr("rows", 2);
text.inputEl.setAttr("cols", 40);
});

new Setting(generalSettings)
Expand Down

0 comments on commit 0f269a1

Please sign in to comment.