docs: update documentation for implicit dependencies resolution

This commit is contained in:
2024-08-07 18:22:18 +03:00
parent 434057ec49
commit 3c7c748b4a
9 changed files with 56 additions and 25 deletions

View File

@ -50,11 +50,11 @@
}
}
$(() => {
packageRebuildModal.on("shown.bs.modal", () => {
$(_ => {
packageRebuildModal.on("shown.bs.modal", _ => {
$(`#package-rebuild-repository-input option[value="${repository.architecture}-${repository.repository}"]`).prop("selected", true);
});
packageRebuildModal.on("hidden.bs.modal", () => { packageRebuildForm.trigger("reset"); });
packageRebuildModal.on("hidden.bs.modal", _ => { packageRebuildForm.trigger("reset"); });
});
</script>