1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-10 17:53:36 +02:00
This commit is contained in:
sjaanus 2023-09-25 12:00:37 +03:00
parent 2f06bbf598
commit 0f06cd94c9
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF

View File

@ -581,7 +581,7 @@ class ProjectStore implements IProjectStore {
mapProjectModeCount(row): ProjectModeCount {
return {
mode: row.mode,
count: parseInt(row.count, 10),
count: Number(row.count),
};
}