From 53a42530d0853ec965926766a7b30fdaddc1de37 Mon Sep 17 00:00:00 2001
From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com>
Date: Tue, 21 Jul 2026 21:22:57 +0200
Subject: [PATCH] fix(ui): unify incomplete source status as Setup required
Use the same warning label for unfinished GitHub and GitLab sources,
and drop the host URL from the GitLab incomplete state line.
---
resources/views/source/all.blade.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/resources/views/source/all.blade.php b/resources/views/source/all.blade.php
index 3eecfed17..a3e907349 100644
--- a/resources/views/source/all.blade.php
+++ b/resources/views/source/all.blade.php
@@ -26,7 +26,7 @@
{{ $source->name }}
@if (is_null($source->app_id))
- Configuration is not finished.
+ Setup required
@else
@if ($source->organization)
Organization: {{ $source->organization }}
@@ -46,7 +46,7 @@
@if ($source->isConnected())
Connected — {{ $source->html_url }}
@else
- Setup required — {{ $source->html_url }}
+ Setup required
@endif