fix: set maximum size for indexer manager to 12 (#1912)

This commit is contained in:
Tagaishi
2024-02-24 19:40:05 +01:00
committed by GitHub
parent 5cd940f3cc
commit db2501633d

View File

@@ -16,8 +16,8 @@ const definition = defineWidget({
gridstack: { gridstack: {
minWidth: 1, minWidth: 1,
minHeight: 1, minHeight: 1,
maxWidth: 3, maxWidth: 12,
maxHeight: 3, maxHeight: 12,
}, },
component: IndexerManagerWidgetTile, component: IndexerManagerWidgetTile,
}); });