From 009de53acb984fcc3fe12fe161133d3bb706994c Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 18 Jan 2024 14:16:06 +0800 Subject: [PATCH] * Fix bug #43704, set data-app of review in current tab. --- module/story/config/dtable.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module/story/config/dtable.php b/module/story/config/dtable.php index 06c6c1e5f7..0f312ff2a9 100644 --- a/module/story/config/dtable.php +++ b/module/story/config/dtable.php @@ -283,8 +283,9 @@ $config->story->dtable->fieldList['actions']['actionsMap']['change']['icon'] $config->story->dtable->fieldList['actions']['actionsMap']['change']['hint'] = $lang->story->operateList['changed']; $config->story->dtable->fieldList['actions']['actionsMap']['change']['data-app'] = $app->tab; -$config->story->dtable->fieldList['actions']['actionsMap']['review']['icon'] = 'search'; -$config->story->dtable->fieldList['actions']['actionsMap']['review']['hint'] = $lang->story->operateList['reviewed']; +$config->story->dtable->fieldList['actions']['actionsMap']['review']['icon'] = 'search'; +$config->story->dtable->fieldList['actions']['actionsMap']['review']['hint'] = $lang->story->operateList['reviewed']; +$config->story->dtable->fieldList['actions']['actionsMap']['review']['data-app'] = $app->tab; $config->story->dtable->fieldList['actions']['actionsMap']['edit']['icon'] = 'edit'; $config->story->dtable->fieldList['actions']['actionsMap']['edit']['hint'] = $lang->story->operateList['edited'];