Skip to content

Commit 7460b5f

Browse files
committed
fix broken file creation due to missing dependency, closes pterodactyl#453
1 parent cce27df commit 7460b5f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
88
* Fixes a bug preventing the use of services that have no variables attached to them.
99
* Fixes 'Remember Me' checkbox being ignored when using 2FA on an account.
1010
* API now returns a useful error displaying what went wrong rather than an obscure 'An Error was Encountered' message when API issues arise.
11+
* Fixes bug preventing the creation of new files in the file manager due to a missing JS dependency on page load.
1112

1213
### Changed
1314
* Renamed session cookies from `laravel_session` to `pterodactyl_session`.

resources/themes/pterodactyl/server/files/add.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
{!! Theme::js('js/frontend/server.socket.js') !!}
102102
{!! Theme::js('vendor/ace/ace.js') !!}
103103
{!! Theme::js('vendor/ace/ext-modelist.js') !!}
104+
{!! Theme::js('vendor/ace/ext-whitespace.js') !!}
104105
{!! Theme::js('vendor/lodash/lodash.js') !!}
105106
{!! Theme::js('js/frontend/files/editor.js') !!}
106107
<script>

0 commit comments

Comments
 (0)