This commit is contained in:
Timothy J. Baek 2024-09-18 00:52:06 +02:00
parent 8e3ad45ce4
commit 63b3076d64
1 changed files with 23 additions and 0 deletions

View File

@ -95,6 +95,29 @@
};
const moveToTopHandler = async (model) => {
// find models with position 0 and set them to 1
const topModels = _models.filter((m) => m.info?.meta?.position === 0);
for (const m of topModels) {
let info = m.info;
if (!info) {
info = {
id: m.id,
name: m.name,
meta: {
position: 1
},
params: {}
};
}
info.meta = {
...info.meta,
position: 1
};
await updateModelById(localStorage.token, info.id, info);
}
let info = model.info;
if (!info) {