Skip to content

Commit

Permalink
Merge branch 'master' into fix/configurable_concurrency_limits
Browse files Browse the repository at this point in the history
  • Loading branch information
fmartingr authored Sep 22, 2024
2 parents 555936b + 9492075 commit 7f2b185
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func initShiori(ctx context.Context, cmd *cobra.Command) (*config.Config, *depen
cfg := config.ParseServerConfiguration(ctx, logger)
cfg.LogLevel = logger.Level.String()

if storageDirectory != "" && cfg.Storage.DataDir != "" {
if storageDirectory != "" {
logger.Warn("--storage-directory is set, overriding SHIORI_DIR.")
cfg.Storage.DataDir = storageDirectory
}
Expand Down
2 changes: 1 addition & 1 deletion internal/view/assets/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/view/assets/less/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ a {
&.list {
grid-gap: 0;
padding-bottom: 0;
grid-template-columns: minmax(0, 1000px);
grid-template-columns: auto;

.pagination-box {
padding: 16px 0;
Expand Down

0 comments on commit 7f2b185

Please sign in to comment.