mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-18 06:28:40 -09:00
Fixes
This commit is contained in:
parent
610cd21897
commit
0e6fe002da
2 changed files with 3 additions and 3 deletions
|
|
@ -86,7 +86,7 @@ class TermGroup_ extends React.PureComponent<TermGroupProps> {
|
||||||
modifierKeys: this.props.modifierKeys,
|
modifierKeys: this.props.modifierKeys,
|
||||||
padding: this.props.padding,
|
padding: this.props.padding,
|
||||||
cleared: session.cleared,
|
cleared: session.cleared,
|
||||||
search: session.search?.asMutable() ?? null,
|
search: session.search,
|
||||||
cols: session.cols,
|
cols: session.cols,
|
||||||
rows: session.rows,
|
rows: session.rows,
|
||||||
copyOnSelect: this.props.copyOnSelect,
|
copyOnSelect: this.props.copyOnSelect,
|
||||||
|
|
|
||||||
4
typings/hyper.d.ts
vendored
4
typings/hyper.d.ts
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
// eslint-disable-next-line eslint-comments/disable-enable-pair
|
// eslint-disable-next-line eslint-comments/disable-enable-pair
|
||||||
/* eslint-disable import/order */
|
/* eslint-disable import/order */
|
||||||
import type {Immutable} from 'seamless-immutable';
|
import type {Immutable, ImmutableDate} from 'seamless-immutable';
|
||||||
import type Client from '../lib/utils/rpc';
|
import type Client from '../lib/utils/rpc';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
|
@ -387,7 +387,7 @@ export type TermProps = {
|
||||||
rows: number | null;
|
rows: number | null;
|
||||||
screenReaderMode: boolean;
|
screenReaderMode: boolean;
|
||||||
scrollback: number;
|
scrollback: number;
|
||||||
search: Date | null;
|
search: ImmutableDate | null;
|
||||||
searchAddon: SearchAddon | null;
|
searchAddon: SearchAddon | null;
|
||||||
selectionColor: string;
|
selectionColor: string;
|
||||||
term: Terminal | null;
|
term: Terminal | null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue