fix tag display
This commit is contained in:
parent
b7aecbb933
commit
57a1e9f24d
2 changed files with 2 additions and 2 deletions
|
|
@ -1317,7 +1317,7 @@ where ixc.image_id = ?`;
|
||||||
return db._getMany(query, [imageId]).map(row => ({
|
return db._getMany(query, [imageId]).map(row => ({
|
||||||
id: parseInt(row.number, 10) || 0,
|
id: parseInt(row.number, 10) || 0,
|
||||||
slug: row.slug,
|
slug: row.slug,
|
||||||
title: row.tittle,
|
title: row.title,
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
const imageFromDb = (db, imageId) => {
|
const imageFromDb = (db, imageId) => {
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ where ixc.image_id = ?`
|
||||||
return db._getMany(query, [imageId]).map(row => ({
|
return db._getMany(query, [imageId]).map(row => ({
|
||||||
id: parseInt(row.number, 10) || 0,
|
id: parseInt(row.number, 10) || 0,
|
||||||
slug: row.slug,
|
slug: row.slug,
|
||||||
title: row.tittle,
|
title: row.title,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue