diff --git a/module/release/ui/linkbug.html.php b/module/release/ui/linkbug.html.php
index ee7afe8916..8d89a741f4 100644
--- a/module/release/ui/linkbug.html.php
+++ b/module/release/ui/linkbug.html.php
@@ -14,6 +14,7 @@ $cols = array();
foreach($config->release->dtable->defaultFields['linkBug'] as $field) $cols[$field] = zget($config->bug->dtable->fieldList, $field, array());
$cols = array_map(function($col){$col['show'] = true; return $col;}, $cols);
+div(setID('searchFormPanel'), set('data-module', 'bug'), searchToggle(set::open(true), set::module('bug')));
dtable
(
set::id('unlinkBugList'),
diff --git a/module/release/ui/linkstory.html.php b/module/release/ui/linkstory.html.php
index e09a084511..91a8475f20 100644
--- a/module/release/ui/linkstory.html.php
+++ b/module/release/ui/linkstory.html.php
@@ -11,11 +11,12 @@ declare(strict_types=1);
namespace zin;
$cols = array();
-foreach($config->release->dtable->defaultFields['linkStory'] as $field) $cols[$field] = zget($config->story->dtable->fieldList, $field, array());
+foreach($config->release->dtable->defaultFields['linkStory'] as $field) $cols[$field] = zget($config->release->dtable->story->fieldList, $field, array());
$cols = array_map(function($col){$col['show'] = true; return $col;}, $cols);
$cols['title']['link'] = $this->createLink('story', 'view', "storyID={id}");
$cols['title']['nestedToggle'] = false;
+div(setID('searchFormPanel'), set('data-module', 'story'), searchToggle(set::open(true), set::module('story')));
dtable
(
set::id('unlinkStoryList'),