Skip to content

Commit

Permalink
change message (#128)
Browse files Browse the repository at this point in the history
* bug fixes
  • Loading branch information
sei-tspencer committed Apr 3, 2024
1 parent cf04a85 commit ad37416
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprint-ui",
"version": "1.0.0",
"version": "1.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/landing/launch/launch.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ export class LaunchComponent implements OnDestroy, OnInit {
}
}
if (this.launchStatus === '' && this.launchedMsel.playerViewId) {
this.launchStatus = 'Preparing to display your event ...';
let url = this.settingsService.settings.PlayerUrl;
if (url.slice(-1) !== '/') {
url = url + '/';
}
url = url + 'view/' + this.launchedMsel.playerViewId;
this.launchedMsel = {};
console.log('sending to the player view');
location.href = url;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/msel/msel.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
[isContentDeveloper]="isContentDeveloper"
></app-cite-role-list>
<app-scenario-event-list
*ngIf="selectedTab === 'Events'"
*ngIf="selectedTab === 'Scenario Events'"
[loggedInUserId]="loggedInUserId"
[isContentDeveloper]="isContentDeveloper"
[userTheme]="userTheme$ | async"
Expand Down

0 comments on commit ad37416

Please sign in to comment.