This commit is contained in:
Timothy Jaeryang Baek
2026-07-01 03:32:12 -05:00
parent 52ee5cb1b3
commit 54f31c630a
2 changed files with 4 additions and 1 deletions

View File

@@ -718,6 +718,9 @@ async def update_model_by_id(
db,
)
if 'base_model_id' not in form_data.model_fields_set:
form_data.base_model_id = model.base_model_id
form_data.access_grants = await filter_allowed_access_grants(
await Config.get('user.permissions'),
user.id,

View File

@@ -345,7 +345,7 @@
if (base_model) {
model.base_model_id = base_model.id;
} else if (!(edit && model.base_model_id === model.id)) {
} else if (!edit) {
model.base_model_id = null;
}
}