Skip to content

Commit 2b980c7

Browse files
committed
Fix service debugger showing stale for non-debuggers
1 parent 0a9c4cb commit 2b980c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "franz",
33
"productName": "Franz",
44
"appId": "com.meetfranz.franz",
5-
"version": "5.5.0-beta.3",
5+
"version": "5.5.0-beta.4",
66
"description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.",
77
"copyright": "adlk x franz - Stefan Malzner",
88
"main": "index.js",

src/components/services/tabs/TabItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ const styles = {
212212
return (
213213
<li
214214
className={classnames({
215-
[classes.stale]: service.lostRecipeConnection,
215+
[classes.stale]: IS_SERVICE_DEBUGGING_ENABLED && service.lostRecipeConnection,
216216
'tab-item': true,
217217
'is-active': service.isActive,
218218
'has-custom-icon': service.hasCustomIcon,

0 commit comments

Comments
 (0)