Skip to content

Commit 165883a

Browse files
authored
Merge branch 'main' into patch-1
2 parents 5cd3f0f + 1ba7cbb commit 165883a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/cron/tasks_basic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func registerRepoHealthCheck() {
5454
RunAtStart: false,
5555
Schedule: "@midnight",
5656
},
57-
Timeout: 60 * time.Second,
57+
Timeout: time.Duration(setting.Git.Timeout.Default) * time.Second,
5858
Args: []string{},
5959
}, func(ctx context.Context, _ *user_model.User, config Config) error {
6060
rhcConfig := config.(*RepoHealthCheckConfig)

web_src/js/components/DashboardRepoList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ export default defineComponent({
445445
class="item navigation tw-py-1" :class="{'disabled': page === 1}"
446446
@click="changePage(page - 1)" :title="textPreviousPage"
447447
>
448-
<svg-icon name="octicon-chevron-left" :size="16" clsas="tw-mr-1"/>
448+
<svg-icon name="octicon-chevron-left" :size="16" class="tw-mr-1"/>
449449
</a>
450450
<a class="active item tw-py-1">{{ page }}</a>
451451
<a

0 commit comments

Comments
 (0)