Skip to content

Commit ca6b5d4

Browse files
committed
fix: pass through fontSizeAdjust prop from RestartableTerminal to Terminal
1 parent 86ac7c6 commit ca6b5d4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: plugins/plugin-codeflare/src/components/RestartableTerminal.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,12 @@ export default class RestartableTerminal extends React.PureComponent<Props, Stat
135135
className="kui--inverted-color-context flex-fill flex-layout flex-align-stretch"
136136
style={{ backgroundColor: "var(--color-sidecar-background-02)" }}
137137
>
138-
<Terminal watch={watch} key={key} searchable={this.props.searchable} />
138+
<Terminal
139+
watch={watch}
140+
key={key}
141+
searchable={this.props.searchable}
142+
fontSizeAdjust={this.props.fontSizeAdjust}
143+
/>
139144
</div>
140145
)
141146
}

0 commit comments

Comments
 (0)