diff --git a/src/app.tsx b/src/app.tsx
index 7511fd0..0b5e32f 100644
--- a/src/app.tsx
+++ b/src/app.tsx
@@ -332,11 +332,17 @@ function AppContent() {
tabsWithPanels.push(tabAndPanel({
key: 'python-output',
title: 'Python Output',
+ titleStyle: productsOutOfDate ? { textDecoration: 'line-through' } : {},
content:
- {TerminalOutput('python-output', pythonOutput)}
+
+ {productsOutOfDate &&
+ The Python output is out of date. Run the program again to refresh it.
+ }
+ {TerminalOutput('python-output', pythonOutput)}
+
}));
useEffect(() => {