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

Bugfixes before release 2.3.0 #267

Merged
merged 3 commits into from
Dec 12, 2024
Merged
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
2 changes: 1 addition & 1 deletion apps/forms/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _setup_form_helper(self):
placeholder="Describe why you want to make the app accessible only via a link",
),
SRVCommonDivField("port", placeholder="8000"),
SRVCommonDivField("image"),
SRVCommonDivField("image", placeholder="e.g. docker.io/username/image-name:image-tag"),
Accordion(
AccordionGroup(
"Advanced settings",
Expand Down
28 changes: 28 additions & 0 deletions apps/migrations/0020_alter_jupyterinstance_environment_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 5.1.1 on 2024-12-12 10:06

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("apps", "0019_alter_shinyinstance_shiny_site_dir"),
("projects", "0008_project_deleted_on"),
]

operations = [
migrations.AlterField(
model_name="jupyterinstance",
name="environment",
field=models.ForeignKey(
blank=True, null=True, on_delete=django.db.models.deletion.RESTRICT, to="projects.environment"
),
),
migrations.AlterField(
model_name="rstudioinstance",
name="environment",
field=models.ForeignKey(
blank=True, null=True, on_delete=django.db.models.deletion.RESTRICT, to="projects.environment"
),
),
]