Skip to content

Commit

Permalink
refactor: Make session state text consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik003 committed Sep 5, 2023
1 parent 55817a6 commit c45a6eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/sessions/service/session.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ export class SessionService {
let success = false;
switch (state) {
case 'Created':
text = 'Created session';
text = 'Session created';
css = 'warning';
break;
case 'Started':
text = 'Started session';
text = 'Session started';
css = 'success';
success = true;
break;
Expand Down

0 comments on commit c45a6eb

Please sign in to comment.