Skip to content

Commit f94b45c

Browse files
committed
Adobe-Consulting-Services#3579 Redirect manager - fulltext search toggle doesn't work
1 parent 530aa75 commit f94b45c

File tree

2 files changed

+4
-1
lines changed
  • ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/clientlibs

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)
99
<!-- Keep this up to date! After a release, change the tag name to the latest release -->-
1010

1111
## Unreleased ([details][unreleased changes details])
12+
- #3579 Redirect manager: fulltext search toggle doesn't work
13+
14+
## 6.12.0 - 2025-04-28
1215

1316
- #3536 Granite Include Obscures included Resource Type
1417
- #3537 Content Sync: preserve mix:referenceable mixin on Assets and Content Fragments

ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/clientlibs/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
$("#redirect-search-box").on("input", function (e) {
360360
var searchText = $(this).val().trim();
361361
var caconfig = $("input[name='caconfig']").val();
362-
var supportsFulltextSearch = $("input[name='fulltextSearchEnabled']").val() || false;
362+
var supportsFulltextSearch = $("input[name='fulltextSearchEnabled']").val() === "true";
363363

364364
if (supportsFulltextSearch) {
365365
var swap = $("#swap");

0 commit comments

Comments
 (0)