Skip to content

Commit

Permalink
Match ordering of enums in frontend and backend
Browse files Browse the repository at this point in the history
  • Loading branch information
aeshub committed Nov 8, 2023
1 parent d8c8c3b commit 20b632e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/api/Database/Models/Robot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public enum RobotStatus
Available,
Busy,
Offline,
Deprecated,
Blocked,
Deprecated
}
}
2 changes: 1 addition & 1 deletion frontend/src/models/Robot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import { VideoStream } from './VideoStream'
export enum RobotStatus {
Available = 'Available',
Busy = 'Busy',
Offline = 'Offline',
Blocked = 'Blocked',
SafeZone = 'Safe Zone',
Offline = 'Offline',
}

export interface Robot {
Expand Down

0 comments on commit 20b632e

Please sign in to comment.