Skip to content

Commit

Permalink
Remove beacons micro-app as default
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
  • Loading branch information
aaronchongth committed Aug 1, 2024
1 parent c92f2ba commit 9a454d6
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions packages/dashboard/src/components/robots/robots-workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ import { WorkspaceState } from '../workspace';

export const robotsWorkspace: WorkspaceState = {
layout: [
{ i: 'robots', x: 0, y: 0, w: 7, h: 3 },
{ i: 'map', x: 8, y: 0, w: 5, h: 9 },
{ i: 'doors', x: 0, y: 0, w: 7, h: 3 },
{ i: 'lifts', x: 0, y: 0, w: 7, h: 3 },
{ i: 'beacons', x: 0, y: 0, w: 7, h: 3 },
{ i: 'mutexGroups', x: 8, y: 0, w: 5, h: 3 },
{ i: 'robots', x: 0, y: 0, w: 7, h: 4 },
{ i: 'map', x: 8, y: 0, w: 5, h: 8 },
{ i: 'doors', x: 0, y: 0, w: 7, h: 4 },
{ i: 'lifts', x: 0, y: 0, w: 7, h: 4 },
{ i: 'mutexGroups', x: 8, y: 0, w: 5, h: 4 },
],
windows: [
{ key: 'robots', appName: 'Robots' },
{ key: 'map', appName: 'Map' },
{ key: 'doors', appName: 'Doors' },
{ key: 'lifts', appName: 'Lifts' },
{ key: 'beacons', appName: 'Beacons' },
{ key: 'mutexGroups', appName: 'Mutex Groups' },
],
};

0 comments on commit 9a454d6

Please sign in to comment.