Skip to content

Commit 3cf6f38

Browse files
committed
newline fix
1 parent 1297a01 commit 3cf6f38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/scripts/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function saveOptions(e) {
1515

1616
if (messageListInput.validationMessage || folderTreeInput.validationMessage){
1717
document.querySelector("#error").style.display = "block";
18-
document.querySelector("#error").innerText = messageListInput.validationMessage + "<br>" + folderTreeInput.validationMessage;
18+
document.querySelector("#error").innerText = messageListInput.validationMessage + "\n" + folderTreeInput.validationMessage;
1919
document.querySelector("#success").style.display = "none";
2020
} else {
2121
document.querySelector("#error").style.display = "none";

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Monterail Dark",
44
"description": "Monterail Dark, a Thunderbird theme inspired by the mockup of Monterail",
5-
"version": "3.1",
5+
"version": "3.1.0",
66
"author": "Emanuele Concas",
77
"homepage_url": "https://addons.thunderbird.net/en-US/thunderbird/addon/monterail-dark/",
88
"applications": {

0 commit comments

Comments
 (0)