mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 05:25:56 +00:00
label editor: helper bugfix
This commit is contained in:
@@ -1787,7 +1787,7 @@ function addLabelExample() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (op == "newerD") {
|
if (op == "newerD") {
|
||||||
if (isNaN(parseInt(p))) {
|
if (isNaN(parseInt(p.value))) {
|
||||||
alert("This action expects numeric parameter.");
|
alert("This action expects numeric parameter.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -1795,7 +1795,7 @@ function addLabelExample() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (op == "newerH") {
|
if (op == "newerH") {
|
||||||
if (isNaN(parseInt(p))) {
|
if (isNaN(parseInt(p.value))) {
|
||||||
alert("This action expects numeric parameter.");
|
alert("This action expects numeric parameter.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user