Skip to content

Commit

Permalink
Merge pull request #149 from vatsimnetwork/development
Browse files Browse the repository at this point in the history
  • Loading branch information
williammck authored Oct 18, 2024
2 parents 299f174 + e26fc72 commit 55afc02
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions resources/views/_layouts/main.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,7 @@
</nav>
</header>
@can('activePilot')
@canany(['activeBoundaryController', 'activeController'])
@else
@include('pilots.nav')
@endcanany
@endcan
@canany(['activeBoundaryController', 'activeController'])
@include('controllers.nav')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
});
$('#new_track_id').change(function () {
Livewire.dispatch('trackChanged', { newTrackId: this.track });
Livewire.dispatch('trackChanged', { newTrackId: this.value });
});
$('#new_random_routeing').blur(function () {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
});
$('#track_id').change(function () {
Livewire.dispatch('trackChanged', { newTrackId: this.track });
Livewire.dispatch('trackChanged', { newTrackId: this.value });
});
$('#random_routeing').blur(function () {
Expand Down

0 comments on commit 55afc02

Please sign in to comment.