Skip to content

Commit e73ddcd

Browse files
committed
Update KernelOverview component to enhance stack trace display
Summary: This commit modifies the layout of the stack trace section in the KernelOverview component to improve usability. Changes: - Adjusted the height properties of the stack trace container to allow for vertical resizing and set a minimum height for better visibility.
1 parent 6c0e52a commit e73ddcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/src/pages/KernelOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ const KernelOverview: React.FC<KernelOverviewProps> = ({
357357
<h3 className="text-lg font-medium mb-2 text-gray-800">
358358
Compilation Stack Trace
359359
</h3>
360-
<div className="bg-gray-50 p-3 rounded-md border border-gray-200 overflow-auto max-h-64">
360+
<div className="bg-gray-50 p-3 rounded-md border border-gray-200 overflow-auto resize-y h-80 min-h-24">
361361
{kernel.stack.map((entry, index) => (
362362
<div key={index} className="mb-1 font-mono text-sm">
363363
<span className="text-blue-600">

0 commit comments

Comments
 (0)