Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into issues/106
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-fleck-at committed Aug 5, 2024
2 parents eb2d8b3 + b20f07c commit 0b824d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webview/components/memory-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ export class MemoryTable extends React.PureComponent<MemoryTableProps, MemoryTab

if (this.props.memory !== undefined) {
const prependScrollingBehaviors: ScrollingBehavior[] = ['Grow', 'Auto-Append'];
memorySelect = <div className='flex-auto'>
memorySelect = <div className='flex flex-auto justify-content-center'>
<MoreMemorySelect
activeReadArguments={this.props.activeReadArguments}
options={[128, 256, 512]}
Expand Down Expand Up @@ -506,7 +506,7 @@ export class MemoryTable extends React.PureComponent<MemoryTableProps, MemoryTab
let memorySelect: React.ReactNode | undefined;

if (this.props.memory !== undefined) {
memorySelect = <div className='flex-auto'>
memorySelect = <div className='flex flex-auto justify-content-center'>
<MoreMemorySelect
activeReadArguments={this.props.activeReadArguments}
options={[128, 256, 512]}
Expand Down

0 comments on commit 0b824d4

Please sign in to comment.