* Adjust modal style.

This commit is contained in:
wangyuting
2023-06-30 10:58:35 +08:00
parent 3eca567f27
commit cd78af7526
8 changed files with 69 additions and 49 deletions
+2
View File
@@ -57,6 +57,7 @@ $duplicateLink = $bug->duplicateBug && $canViewBug ? a
(
set('href', $this->createLink('bug', 'view', "bugID={$bug->duplicateBug}")),
set('data-toggle', 'modal'),
set('data-size', 'lg'),
$bug->duplicateBugTitle
) : '';
$duplicateBug = $bug->duplicateBug ? "#{$bug->duplicateBug}:{$duplicateLink}" : '';
@@ -68,6 +69,7 @@ foreach($legendMisc['relatedBug']['text'] as $relatedBugID => $relatedBugTitle)
(
set('href', $this->createLink('bug', 'view', "bugID={$relatedBugID}")),
set('data-toggle', 'modal'),
set('data-size', 'lg'),
span(label(set::class('dark-outline rounded-full mr-2'), $relatedBugID), $relatedBugTitle)
));
}