Merge remote-tracking branch 'origin/v0.14.0rc' into feature/bug-complete-fix-for-the-plan-mode-system-inside-sbyt

Resolved conflict in auto-mode-service.ts by keeping the v0.14.0rc version
which uses isFeatureRunning() method and has more informative logging.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Shirone
2026-01-25 15:12:42 +01:00
7 changed files with 913 additions and 57 deletions

View File

@@ -86,8 +86,7 @@ export function IssueDetailPanel({
{(() => {
if (isValidating) {
return (
<Button variant="default" size="sm" disabled>
<Spinner size="sm" className="mr-1" />
<Button variant="default" size="sm" loading>
Validating...
</Button>
);
@@ -334,16 +333,9 @@ export function IssueDetailPanel({
size="sm"
className="w-full"
onClick={loadMore}
disabled={loadingMore}
loading={loadingMore}
>
{loadingMore ? (
<>
<Spinner size="sm" className="mr-2" />
Loading...
</>
) : (
'Load More Comments'
)}
{loadingMore ? 'Loading...' : 'Load More Comments'}
</Button>
)}
</div>