Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Fix JS error #1409

Merged
merged 3 commits into from
Dec 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Extracted materialize from the core UD client libraries by [adamdriscoll](https://github.com/adamdriscoll)
- Fixed JavaScript error when loading page by [adamdriscoll](https://github.com/adamdriscoll)

### Changed (Enterprise)

- Changed how authorization policies are run by [adamdriscoll](https://github.com/adamdriscoll)
- Admin mode is now a toolbar rather than a floating action button by [adamdriscoll](https://github.com/adamdriscoll)
- Updated the look and feel of the admin mode licensing and diagnostics pages by [adamdriscoll](https://github.com/adamdriscoll)

### Removed
### Removed (Enterprise)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Get-UDDashboard | Stop-UDDashboard
$Server = Start-UDDashboard -Port 10001 -Dashboard (New-UDDashboard -Title "Test" -Content {})
$Driver = Start-SeFirefox

Enable-UDLogging
Describe "Sessions" {

Context "Should remove sessions" {
Expand Down
6 changes: 1 addition & 5 deletions src/client/src/app/ud-dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,7 @@ function Dashboard({history}) {
}

if (loading) {
return <Suspense fallback={<div></div>}>
<LazyElement component={{
type: 'loading'
}} />
</Suspense>
return <div />
}

try
Expand Down