File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/positronNotebook/browser/notebookCells Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import { PositronNotebookCodeCell } from '../PositronNotebookCells/PositronNoteb
1717import { formatCellDuration , formatTimestamp , getRelativeTime , isMoreThanOneHourAgo } from './cellExecutionUtils.js' ;
1818import { Icon } from '../../../../../platform/positronActionBar/browser/components/icon.js' ;
1919import { Codicon } from '../../../../../base/common/codicons.js' ;
20+ import { positronClassNames } from '../../../../../base/common/positronUtilities.js' ;
2021
2122interface CodeCellStatusFooterProps {
2223 cell : PositronNotebookCodeCell ;
@@ -185,7 +186,7 @@ export function CodeCellStatusFooter({ cell, hasError }: CodeCellStatusFooterPro
185186 aria-hidden = { isCollapsed || undefined }
186187 aria-label = { isCollapsed ? undefined : getAriaLabel ( ) }
187188 aria-live = { isCurrentlyRunning ? 'polite' : 'off' }
188- className = { ` positron-notebook-code-cell-footer${ isCollapsed ? ' collapsed' : '' } ` }
189+ className = { positronClassNames ( ' positron-notebook-code-cell-footer' , { ' collapsed': isCollapsed } ) }
189190 data-execution-status = { dataExecutionStatus }
190191 role = 'status'
191192 >
You can’t perform that action at this time.
0 commit comments