fix icon configuration

The icon subfield of `products` is optional. The plugin provides a fallback icon for products that do not define them.
This commit is contained in:
Ryan Vazquez
2020-11-19 15:04:07 -05:00
committed by GitHub
parent 8803fec70d
commit aa22f839ca
+1 -1
View File
@@ -31,7 +31,7 @@ interface Config {
/**
* @visibility frontend
*/
icon: 'compute' | 'data' | 'database' | 'storage' | 'search' | 'ml';
icon?: 'compute' | 'data' | 'database' | 'storage' | 'search' | 'ml';
};
};