fix(frontend): the width of the branch dropdown appears inconsistent on medium-sized screens. (#11620)

This commit is contained in:
Hiep Le
2025-11-04 01:30:11 +07:00
committed by GitHub
parent 9bcf80dba5
commit 0f054c740c

View File

@@ -131,7 +131,7 @@ export function RepositorySelectionForm({
onBranchSelect={handleBranchSelection}
defaultBranch={defaultBranch}
placeholder="Select branch..."
className="max-w-[500px]"
className="max-w-full"
disabled={!selectedRepository || isLoadingSettings}
/>
);