Skip to content

Commit

Permalink
Bugfixes before release 2.3.0 (#267)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikita Churikov <[email protected]>
  • Loading branch information
akochari and churnikov authored Dec 12, 2024
1 parent f5cfbbb commit 1bf3a55
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
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"
),
),
]

0 comments on commit 1bf3a55

Please sign in to comment.