Merge branch 'forgejo' into upload_with_path_structure
Some checks failed
Integration tests for the release process / release-simulation (push) Has been cancelled

This commit is contained in:
David Rotermund 2025-02-03 16:21:13 +00:00
commit 007d1c62bd
138 changed files with 1678 additions and 1493 deletions

View file

@ -1,5 +1,5 @@
<script>
import {createApp, nextTick} from 'vue';
import {createApp} from 'vue';
import $ from 'jquery';
import {SvgIcon} from '../svg.js';
import {GET} from '../modules/fetch.js';
@ -103,9 +103,6 @@ const sfc = {
const el = document.getElementById('dashboard-repo-list');
this.changeReposFilter(this.reposFilter);
$(el).find('.dropdown').dropdown();
nextTick(() => {
this.$refs.search.focus();
});
this.textArchivedFilterTitles = {
'archived': this.textShowOnlyArchived,

View file

@ -43,6 +43,9 @@ function initTagNameEditor() {
showElem('#tag-target-selector');
tagHelper.textContent = value ? newTagHelperText : defaultTagHelperText;
}
const title_input = document.getElementById('release-title');
title_input.placeholder = value;
});
}