mirror of
https://github.com/grocy/grocy.git
synced 2025-08-15 10:14:39 +00:00
Removed type conversions where no longer needed
PHP 8.1 PDO SQLite now returns native data types
This commit is contained in:
@@ -104,7 +104,7 @@ $('#chore-form input').keydown(function(event)
|
||||
var checkboxValues = $("#period_config").val().split(",");
|
||||
for (var i = 0; i < checkboxValues.length; i++)
|
||||
{
|
||||
if (!checkboxValues[i].isEmpty())
|
||||
if (checkboxValues[i])
|
||||
{
|
||||
$("#" + checkboxValues[i]).prop('checked', true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user