Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/components/ServerUpdateAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export function ServerUpdateAction({

if (selfUpdate === "desktop-managed" && !desktopAppUpdate) {
return (
<span className="text-muted-foreground text-xs">
<span className="min-w-0 text-muted-foreground text-xs">
Update the desktop app on that machine to update this server.
</span>
);
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/components/settings/ConnectionsSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ const PairingLinkListRow = memo(function PairingLinkListRow({
</p>
) : null}
</div>
<div className="flex w-full shrink-0 items-center gap-2 sm:w-auto sm:justify-end">
<div className="flex w-full min-w-0 items-center gap-2 sm:w-auto sm:max-w-[60%] sm:justify-end">
{shareablePairingUrl && canCopyToClipboard ? (
<Button
size="xs"
Expand Down Expand Up @@ -992,7 +992,7 @@ const ConnectedClientListRow = memo(function ConnectedClientListRow({
<AccessScopeSummary scopes={clientSession.scopes} label="Client scopes" />
</p>
</div>
<div className="flex w-full shrink-0 items-center gap-2 sm:w-auto sm:justify-end">
<div className="flex w-full min-w-0 items-center gap-2 sm:w-auto sm:max-w-[60%] sm:justify-end">
{!clientSession.current ? (
<Button
size="xs"
Expand Down Expand Up @@ -1523,7 +1523,7 @@ function SavedBackendListRow({
</Tooltip>
) : null}
{environment.connection.error && !resumingServerUpdate ? (
<p className="flex min-w-0 items-center gap-2 text-destructive text-xs">
<p className="flex min-w-0 flex-wrap items-center gap-2 text-destructive text-xs">
<span className="min-w-0 break-words">
{connectionStatusText(environment.connection)}
</span>
Expand All @@ -1539,7 +1539,7 @@ function SavedBackendListRow({
</p>
) : null}
</div>
<div className="flex w-full shrink-0 items-center gap-2 sm:w-auto sm:justify-end">
<div className="flex w-full min-w-0 items-center gap-2 sm:w-auto sm:max-w-[60%] sm:justify-end">
{versionMismatch &&
(serverUpdateState.status === "idle" || serverUpdateState.status === "failed") ? (
<ServerUpdateAction
Expand Down
Loading