Skip to content

Commit

Permalink
Merge pull request #83 from wakatime/misc/running-apps-note
Browse files Browse the repository at this point in the history
Running apps note
  • Loading branch information
alanhamlett authored Dec 18, 2024
2 parents 38d8e50 + efe1ba7 commit 7426bcd
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/pages/MonitoredApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,16 @@ export function MonitoredAppsPage() {
return (
<Fragment key={app.path}>
<AppListItem app={app} />
{i < appsQuery.data.length - 1 && (
<div className="pl-[4rem]">
<hr className="h-px bg-border" />
</div>
{i === appsQuery.data.length - 1 && (
<div className="pl-[4rem]">
<hr className="h-px bg-border" />
<div className="mr-12 py-4 text-sm">
Missing an app? Only running apps are detected.
<br />
Make sure your app is running before opening this window.
</div>
</div>
)}
</Fragment>
Expand Down

0 comments on commit 7426bcd

Please sign in to comment.