Skip to content

Commit

Permalink
Merge branch 'main' into feat/Tapis-v3-redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb authored Apr 29, 2024
2 parents 178e15b + 5a2dc84 commit 3a567a7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.11 on 2024-04-29 16:33

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("workspace", "0010_alter_applistingentry_options_and_more"),
]

operations = [
migrations.AlterModelOptions(
name="applistingentry",
options={
"ordering": ["-is_popular", "label"],
"verbose_name_plural": "App Listing Entries",
},
),
]
2 changes: 1 addition & 1 deletion designsafe/apps/workspace/models/app_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class Meta:
)
]

ordering = ["is_popular", "label"]
ordering = ["-is_popular", "label"]


class AppVariant(models.Model):
Expand Down

0 comments on commit 3a567a7

Please sign in to comment.