Skip to content

Commit 2ee2c6a

Browse files
committed
fix: missing migrations
1 parent d8fb1a2 commit 2ee2c6a

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated by Django 5.2.11 on 2026-02-19 12:20
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("core", "0079_alter_observation_assessment_status_and_more"),
10+
("core", "0080_merge_20260213_1257"),
11+
]
12+
13+
operations = []

backend/application/metrics/services/metrics.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def calculate_metrics_for_product( # pylint: disable=too-many-branches
6262
not_affected=latest_product_metrics.not_affected,
6363
not_security=latest_product_metrics.not_security,
6464
risk_accepted=latest_product_metrics.risk_accepted,
65-
affected=latest_product_metrics.affected,
6665
)
6766
iteration_date += timedelta(days=1)
6867
metrics_calculated = True
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated by Django 5.2.11 on 2026-02-19 12:20
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("rules", "0019_alter_rule_new_status"),
10+
("rules", "0019_merge_20260115_1242"),
11+
]
12+
13+
operations = []

frontend/src/core/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ export const OBSERVATION_STATUS_FALSE_POSITIVE = "False positive";
157157
export const OBSERVATION_STATUS_NOT_AFFECTED = "Not affected";
158158
export const OBSERVATION_STATUS_NOT_SECURITY = "Not security";
159159
export const OBSERVATION_STATUS_RISK_ACCEPTED = "Risk accepted";
160-
export const OBSERVATION_STATUS_AFFECTED = "Affected";
161160

162161
export const OBSERVATION_STATUS_CHOICES = [
163162
{ id: OBSERVATION_STATUS_OPEN, name: OBSERVATION_STATUS_OPEN },

0 commit comments

Comments
 (0)