Skip to content

Commit

Permalink
fix: set maximum size for indexer manager to 12 (#1912)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeDemal authored Feb 24, 2024
1 parent 5cd940f commit db25016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/indexer-manager/IndexerManagerTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const definition = defineWidget({
gridstack: {
minWidth: 1,
minHeight: 1,
maxWidth: 3,
maxHeight: 3,
maxWidth: 12,
maxHeight: 12,
},
component: IndexerManagerWidgetTile,
});
Expand Down

0 comments on commit db25016

Please sign in to comment.