Skip to content

Commit 8d89064

Browse files
authored
Merge branch 'main' into lazy
2 parents 095428d + f528df9 commit 8d89064

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

services/packages/rpm/repository.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import (
1313
"errors"
1414
"fmt"
1515
"io"
16-
"net/url"
1716
"strings"
1817
"time"
1918

@@ -438,7 +437,7 @@ func buildPrimary(ctx context.Context, pv *packages_model.PackageVersion, pfs []
438437
Archive: pd.FileMetadata.ArchiveSize,
439438
},
440439
Location: Location{
441-
Href: fmt.Sprintf("package/%s/%s/%s/%s", url.PathEscape(pd.Package.Name), url.PathEscape(packageVersion), url.PathEscape(pd.FileMetadata.Architecture), url.PathEscape(fmt.Sprintf("%s-%s.%s.rpm", pd.Package.Name, packageVersion, pd.FileMetadata.Architecture))),
440+
Href: fmt.Sprintf("package/%s/%s/%s/%s-%s.%s.rpm", pd.Package.Name, packageVersion, pd.FileMetadata.Architecture, pd.Package.Name, packageVersion, pd.FileMetadata.Architecture),
442441
},
443442
Format: Format{
444443
License: pd.VersionMetadata.License,

web_src/css/features/projects.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
flex-direction: row;
44
flex-wrap: nowrap;
55
overflow-x: auto;
6+
overflow-y: clip;
7+
align-items: stretch;
68
margin: 0 0.5em;
79
}
810

@@ -25,8 +27,8 @@
2527
margin: 0 0.5rem !important;
2628
padding: 0.5rem !important;
2729
width: 320px;
28-
height: calc(100vh - 450px);
29-
min-height: 60vh;
30+
height: initial;
31+
min-height: max(calc(100vh - 400px), 300px);
3032
flex: 0 0 auto;
3133
overflow: visible;
3234
display: flex;
@@ -61,7 +63,7 @@
6163
padding: 0 !important;
6264
flex-wrap: nowrap !important;
6365
flex-direction: column;
64-
overflow-x: auto;
66+
overflow-x: clip;
6567
gap: .25rem;
6668
}
6769

0 commit comments

Comments
 (0)