Skip to content

Commit 63fe8a4

Browse files
committed
Refine error message for installed state
This revises the error message to clarify that Tailscale is installed but not running, since I've confused myself a few times with the previous message. This could be further improved by fixing #28
1 parent d139748 commit 63fe8a4

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

ui/src/views/container-view.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,13 @@ function HostWarning() {
391391
hostStatus.status === "installed"
392392
? {
393393
title: "Your host device is not running Tailscale",
394-
description:
395-
"Tailscale's private URLs are only accessible on devices running Tailscale. To access these URLs, install Tailscale on your host device and log in.",
394+
description: (
395+
<>
396+
Tailscale is installed on your host device, but is not running.
397+
Open Tailscale and log in on your host device to access private
398+
Tailscale URLs.
399+
</>
400+
),
396401
}
397402
: hostStatus.status === "running" && hostStatus.loginName !== loginName
398403
? {

0 commit comments

Comments
 (0)