fix: number that should be text

Signed-off-by: Avior <f.bouillon@aptatio.com>
This commit is contained in:
Florian Bouillon 2022-12-07 15:31:59 +01:00
parent 9a8cb6dff4
commit d3963900e7
Signed by: Florian Bouillon
GPG Key ID: E05B3A94178D3A7C

View File

@ -102,7 +102,7 @@ export const generateThingy = async (username: string, filterYear?: number): Pro
final += `max = ${max};\n`
final += `min = ${min};\n`
final += `text = "${username}";\n`
final += `year = ${filterYear};\n`
final += `year = "${filterYear}";\n`
// Fetch the CAD file
let cadPath = './3d.scad'