Skip to content

Commit

Permalink
fix(Change): handle HTML from searchoption
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz authored and trasher committed Oct 6, 2023
1 parent 4c6283e commit a41f14f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/Change.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ public function rawSearchOptions()
'field' => 'impactcontent',
'name' => __('Analysis impact'),
'massiveaction' => false,
'datatype' => 'text'
'datatype' => 'text',
'htmltext' => true
];

$tab[] = [
Expand All @@ -519,7 +520,8 @@ public function rawSearchOptions()
'field' => 'controlistcontent',
'name' => __('Control list'),
'massiveaction' => false,
'datatype' => 'text'
'datatype' => 'text',
'htmltext' => true
];

$tab[] = [
Expand All @@ -528,7 +530,8 @@ public function rawSearchOptions()
'field' => 'rolloutplancontent',
'name' => __('Deployment plan'),
'massiveaction' => false,
'datatype' => 'text'
'datatype' => 'text',
'htmltext' => true
];

$tab[] = [
Expand All @@ -537,7 +540,8 @@ public function rawSearchOptions()
'field' => 'backoutplancontent',
'name' => __('Backup plan'),
'massiveaction' => false,
'datatype' => 'text'
'datatype' => 'text',
'htmltext' => true
];

$tab[] = [
Expand All @@ -546,7 +550,8 @@ public function rawSearchOptions()
'field' => 'checklistcontent',
'name' => __('Checklist'),
'massiveaction' => false,
'datatype' => 'text'
'datatype' => 'text',
'htmltext' => true
];

$tab = array_merge($tab, Notepad::rawSearchOptionsToAdd());
Expand Down

0 comments on commit a41f14f

Please sign in to comment.