remove space typo

This commit is contained in:
andreacyc 2021-10-28 10:26:09 -04:00
parent 9a8f22f9ea
commit 28b28733ae
3 changed files with 4 additions and 1 deletions

View File

@ -48,6 +48,7 @@ export const ShowJson = React.memo(function ShowJson(props: ShowJsonProps) {
}); });
const jsonValue = jsonState.data || ''; const jsonValue = jsonState.data || '';
return ( return (
<div className="show-json"> <div className="show-json">
<div className="top-actions"> <div className="top-actions">

View File

@ -203,7 +203,7 @@ export const COMPACTION_CONFIG_FIELDS: Field<CompactionConfig>[] = [
!deepGet(t, 'tuningConfig.partitionsSpec.maxRowsPerSegment'), !deepGet(t, 'tuningConfig.partitionsSpec.maxRowsPerSegment'),
info: ( info: (
<> <>
<p>Maximum number of rows to include in a partition.</p>{' '} <p>Maximum number of rows to include in a partition.</p>
<p> <p>
Note that either <Code>targetRowsPerSegment</Code> or <Code>maxRowsPerSegment</Code> will Note that either <Code>targetRowsPerSegment</Code> or <Code>maxRowsPerSegment</Code> will
be used to find the best partitioning. Leave blank to show all properties. be used to find the best partitioning. Leave blank to show all properties.

View File

@ -3072,6 +3072,7 @@ export class LoadDataView extends React.PureComponent<LoadDataViewProps, LoadDat
const resp = await Api.instance.get( const resp = await Api.instance.get(
`/druid/indexer/v1/supervisor/${Api.encodePath(initSupervisorId)}`, `/druid/indexer/v1/supervisor/${Api.encodePath(initSupervisorId)}`,
); );
console.log('resp.data', resp.data);
this.updateSpec(cleanSpec(resp.data)); this.updateSpec(cleanSpec(resp.data));
this.setState({ continueToSpec: true }); this.setState({ continueToSpec: true });
this.updateStep('spec'); this.updateStep('spec');
@ -3152,6 +3153,7 @@ export class LoadDataView extends React.PureComponent<LoadDataViewProps, LoadDat
const { spec, submitting } = this.state; const { spec, submitting } = this.state;
if (submitting) return; if (submitting) return;
console.log('spec', spec);
this.setState({ submitting: true }); this.setState({ submitting: true });
if (isTask(spec)) { if (isTask(spec)) {
let taskResp: any; let taskResp: any;