Fixes in project creation

This commit is contained in:
KennyTV 2020-10-01 10:33:37 +02:00
parent 36cfc4176d
commit e25c71f33a
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
6 changed files with 8 additions and 8 deletions

View File

@ -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) => {

View File

@ -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));
}

View File

@ -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));
}

View File

@ -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));
}

View File

@ -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>

View File

@ -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}";