mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 22:18:41 -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,
|
||||
padding: this.props.padding,
|
||||
cleared: session.cleared,
|
||||
search: session.search?.asMutable() ?? null,
|
||||
search: session.search,
|
||||
cols: session.cols,
|
||||
rows: session.rows,
|
||||
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 import/order */
|
||||
import type {Immutable} from 'seamless-immutable';
|
||||
import type {Immutable, ImmutableDate} from 'seamless-immutable';
|
||||
import type Client from '../lib/utils/rpc';
|
||||
|
||||
declare global {
|
||||
|
|
@ -387,7 +387,7 @@ export type TermProps = {
|
|||
rows: number | null;
|
||||
screenReaderMode: boolean;
|
||||
scrollback: number;
|
||||
search: Date | null;
|
||||
search: ImmutableDate | null;
|
||||
searchAddon: SearchAddon | null;
|
||||
selectionColor: string;
|
||||
term: Terminal | null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue