Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: GitHub Enterprise setup fails while complaining about "public": "false" #145

Merged
merged 3 commits into from Nov 7, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup/src/App.svelte
Expand Up @@ -211,7 +211,7 @@
<p class="pt-2">If multiple organizations under the same GitHub Enterprise Server need to use the runners,
you can make the app public.</p>
<div class="form-check">
<input class="form-check-input" type="checkbox" bind:value={manifest.public} id="public">
<input class="form-check-input" type="checkbox" bind:checked={manifest.public} id="public">
<label class="form-check-label" for="public">
Public app
</label>
Expand Down