Enhance category metadata in JSON and update script accordion to display icons. Added 'icon' property to categories in metadata.json and modified script-accordion component to render corresponding icons for each category. (#7894)

This commit is contained in:
Bram Suurd 2025-09-25 10:49:12 +02:00 committed by GitHub
parent 7fd08cbe69
commit 984eeedf31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 208 additions and 37 deletions

View file

@ -41,6 +41,8 @@ export type Category = {
name: string;
id: number;
sort_order: number;
description: string;
icon: string;
scripts: Script[];
};