Hi,
I’m trying to create a custom app module that allows for bulk user adds to individual software. Per the documentation, to have a module show on the right side in the asset details page, the manifest.json should have the location set to “asset_sidebar”. Below is my manifest.json:
{
“platform-version”: “3.0”,
“modules”: {
“service_asset”: {
“location”: {
“asset_sidebar”: {
“url”: “index.html”,
“icon”: “styles/images/rocket.svg”
}
}
}
},
“engines”: {
“node”: “18.20.5”,
“fdk”: “9.3.0”
}
}
When I deploy it to dev, it doesn’t show when i go to a specific software (Asset > Software > [individual software]), am i using the wrong location? is my manifest.json set up incorrectly?