Skip to content

Commit

Permalink
fix: Get reorder path working
Browse files Browse the repository at this point in the history
  • Loading branch information
romeonicholas committed Nov 28, 2023
1 parent dfe6c10 commit f36ac28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import sqlalchemy as sa
from alembic import op


# revision identifiers, used by Alembic.
revision = "0e2028f83156"
down_revision = "ac0e6e0f77ee"
Expand Down
1 change: 1 addition & 0 deletions backend/capellacollab/projects/toolmodels/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def create_model(
slug=slugify.slugify(post_model.name),
description=post_model.description if post_model.description else "",
project=project,
display_order=post_model.display_order,
tool=tool,
version=version,
nature=nature,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ import { T4CRepoDeletionDialogComponent } from './settings/modelsources/t4c-sett
import { T4CSettingsWrapperComponent } from './settings/modelsources/t4c-settings/t4c-settings-wrapper/t4c-settings-wrapper.component';
import { T4CSettingsComponent } from './settings/modelsources/t4c-settings/t4c-settings.component';
import { SettingsComponent } from './settings/settings.component';
import { ReorderModelsComponent } from './projects/project-detail/model-overview/reorder-models/reorder-models.component';

@NgModule({
declarations: [
Expand Down

0 comments on commit f36ac28

Please sign in to comment.