mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-03-31 16:00:39 +08:00
Fixes in project creation
This commit is contained in:
parent
36cfc4176d
commit
e25c71f33a
@ -6,7 +6,7 @@ import { decodeHtml, numberWithCommas, toggleSpinner } from '@/utils';
|
||||
|
||||
const PROJECT_OWNER = window.PROJECT_OWNER;
|
||||
const PROJECT_SLUG = window.PROJECT_SLUG;
|
||||
const PROJECT_ID = window.PROJECT_ID;
|
||||
const NAMESPACE = window.NAMESPACE;
|
||||
const ALREADY_STARRED = window.ALREADY_STARRED;
|
||||
|
||||
const ACTIVE_NAV = window.ACTIVE_NAV;
|
||||
@ -235,8 +235,8 @@ $(function () {
|
||||
increment *= -1;
|
||||
});
|
||||
|
||||
if (PROJECT_ID) {
|
||||
apiV2Request('projects/' + PROJECT_ID).then((response) => {
|
||||
if (NAMESPACE) {
|
||||
apiV2Request('projects/' + NAMESPACE).then((response) => {
|
||||
if (response.promoted_versions) {
|
||||
let html = '';
|
||||
response.promoted_versions.forEach((version) => {
|
||||
|
@ -29,7 +29,7 @@ public class PaperPluginFileHandler extends FileTypeHandler {
|
||||
return result;
|
||||
}
|
||||
|
||||
String version = (String) data.get("version");
|
||||
String version = String.valueOf(data.get("version"));
|
||||
if (version != null) {
|
||||
result.add(new DataValue.StringDataValue("version", version));
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ public class VelocityFileHandler extends FileTypeHandler {
|
||||
return result;
|
||||
}
|
||||
|
||||
String version = (String) data.get("version");
|
||||
String version = String.valueOf(data.get("version"));
|
||||
if (version != null) {
|
||||
result.add(new DataValue.StringDataValue("version", version));
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ public class WaterfallPluginFileHandler extends FileTypeHandler {
|
||||
return result;
|
||||
}
|
||||
|
||||
String version = (String) data.get("version");
|
||||
String version = String.valueOf(data.get("version"));
|
||||
if (version != null) {
|
||||
result.add(new DataValue.StringDataValue("version", version));
|
||||
}
|
||||
|
@ -121,7 +121,7 @@
|
||||
<#if version.dependencies??>
|
||||
<div class="float-right" id="upload-platform-tags">
|
||||
<#list version.dependenciesAsGhostTags as pair>
|
||||
<@projectTag.tagTemplate @helper["io.papermc.hangar.model.viewhelpers.ViewTag"].fromVersionTag(pair.right) pair.left "form-publish" />
|
||||
<@projectTag.tagTemplate @helper["io.papermc.hangar.model.viewhelpers.ViewTag"].fromVersionTag(pair.getRight()) pair.left "form-publish" />
|
||||
</#list>
|
||||
</div>
|
||||
<#else>
|
||||
|
@ -16,7 +16,7 @@ Base template for Project overview.
|
||||
<script <#-- @CSPNonce.attr -->>
|
||||
window.PROJECT_OWNER = "${p.project.ownerName}";
|
||||
window.PROJECT_SLUG = "${p.project.slug}";
|
||||
window.PROJECT_ID = "${p.project.pluginId}";
|
||||
window.NAMESPACE = "${p.project.ownerName}/${p.project.slug}";
|
||||
window.ALREADY_STARRED = ${sp.starred?c};
|
||||
|
||||
window.ACTIVE_NAV = "${active}";
|
||||
|
Loading…
x
Reference in New Issue
Block a user