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.
This commit is contained in:
Andras Bacsai
2026-07-21 21:22:57 +02:00
parent 3772a55458
commit 53a42530d0
+2 -2
View File
@@ -26,7 +26,7 @@
{{ $source->name }}
</div>
@if (is_null($source->app_id))
<span class="box-description text-error! ">Configuration is not finished.</span>
<span class="box-description text-warning">Setup required</span>
@else
@if ($source->organization)
<span class="box-description">Organization: {{ $source->organization }}</span>
@@ -46,7 +46,7 @@
@if ($source->isConnected())
<span class="box-description text-success">Connected {{ $source->html_url }}</span>
@else
<span class="box-description text-warning">Setup required {{ $source->html_url }}</span>
<span class="box-description text-warning">Setup required</span>
@endif
</div>
</a>