mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
Fixed activity toolbox filtering.
Due to a bug in the orchard-workflows.js script, the activity toolbox filter was broken.
This commit is contained in:
@@ -97,7 +97,7 @@
|
||||
} else {
|
||||
var lowerCaseText = text.toLowerCase();
|
||||
$(".activity-toolbox-item").each(function () {
|
||||
var recordText = $(this).data("activity-text").toLowerCase();
|
||||
var recordText = $(this).data("activity-name").toLowerCase();
|
||||
$(this).toggle(recordText.indexOf(lowerCaseText) >= 0);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user