Skip to content
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
2 changes: 1 addition & 1 deletion packages/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"tag": "prerelease"
},
"dependencies": {
"@novnc/novnc": "^1.3.0",
"@novnc/novnc": "^1.5.0",
"@patternfly/react-core": "^5.0.0",
"@patternfly/react-styles": "^5.0.0",
"@spice-project/spice-html5": "^0.2.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/module/src/components/VncConsole/VncConsole.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import {
EmptyStateFooter
} from '@patternfly/react-core';

import { initLogging } from '@novnc/novnc/core/util/logging';
import { initLogging } from '@novnc/novnc/lib/util/logging';
/** Has bad types. https://github.com/larryprice/novnc-core/issues/5 */
import RFB from '@novnc/novnc/core/rfb';
import RFB from '@novnc/novnc/lib/rfb';

import { VncActions } from './VncActions';
import { constants } from '../common/constants';
Expand Down
1 change: 1 addition & 0 deletions packages/module/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": false,
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"strictNullChecks": false /* Enable strict null checks. */,
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
Expand Down
Loading