chore: use full meta init

This commit is contained in:
Ibrahima G. Coulibaly
2025-04-17 08:03:18 +01:00
parent 779a5cfdb7
commit 6310fbdc0e
8 changed files with 31 additions and 23 deletions

View File

@@ -17,13 +17,13 @@ allGenericCalcs.forEach((x) => {
tools.push(
defineTool('number', {
name: x.title,
path: 'generic-calc/' + x.name,
icon: 'lsicon:number-filled',
name: x.name,
path: 'generic-calc/' + x.path,
icon: x.icon || '',
description: x.description || '',
shortDescription: '',
keywords: ['generic', 'calc'],
longDescription: '',
shortDescription: x.description || '',
keywords: ['calculator', 'math', ...x.keywords],
longDescription: x.longDescription || '',
component: lazy(importComponent2)
})
);