Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,7 @@ export default class BundleDetailsController {
return;
}
const item = await this.store.get(id);
if (item?.has_downloads) {
this._createWindow(item, i18n);
} else {
const w = (this.detailWindow = this.windowManager.createModalWindow({
title: i18n.noReleasesTitle,
draggable: true,
dndDraggable: false,
content: i18n.noReleasesYet,
closable: true
}));
w.show();
}
this._createWindow(item, i18n);
}

async _lookupAvailableTags(repositoryName) {
Expand Down
1 change: 0 additions & 1 deletion src/main/js/bundles/mapapps-github-manager/nls/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ module.exports = {
windowTitle: "Bundle '${name}'",
createWindowTitle: "Bundle Upload",
noReleasesYet: "Sorry, this bundle doesn't have any releases yet.",
noReleasesTitle: "No releases found",
notFound: "Sorry, we could not locate this bundle on GitHub.",
integrationFailed: "Sorry, the bundle could not be integrated into map.apps.",
downloading: "Fetching bundle",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ module.exports = {
windowTitle: "Bundle '${name}'",
createWindowTitle: "Bundle hochladen",
noReleasesYet: "Dieses Bundle hat leider noch keine Releases.",
noReleasesTitle: "Kein Release gefunden",
notFound: "Das Bundle konnte leider nicht von GitHub heruntergeladen werden.",
integrationFailed: "Ein Fehler trat auf, das Bundle konnte leider nicht in map.apps integriert werden.",
integrationSuccess: "Bundle installiert.",
Expand Down
Loading