Skip to content

Commit

Permalink
Refine error message for installed state
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rosszurowski committed Jul 13, 2022
1 parent 9f6dca9 commit 15b540e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ui/src/views/container-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,13 @@ function HostWarning() {
hostStatus.status === "installed"
? {
title: "Your host device is not running Tailscale",
description:
"Tailscale's private URLs are only accessible on devices running Tailscale. To access these URLs, install Tailscale on your host device and log in.",
description: (
<>
Tailscale is installed on your host device, but is not running.
Open Tailscale and log in on your host device to access private
Tailscale URLs.
</>
),
}
: hostStatus.status === "running" && hostStatus.loginName !== loginName
? {
Expand Down

0 comments on commit 15b540e

Please sign in to comment.