Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export function getIngestionTitle(ingestionType: IngestionComboTypeWithExtra): s

export function getIngestionImage(ingestionType: IngestionComboTypeWithExtra): string {
const parts = ingestionType.split(':');
if (parts.length === 2) return parts[1].toLowerCase();
if (parts.length === 2) return parts[1];
return ingestionType;
}

Expand Down Expand Up @@ -2071,6 +2071,7 @@ const TUNING_FORM_FIELDS: Field<IngestionSpec>[] = [
{
name: 'spec.tuningConfig.maxPendingPersists',
type: 'number',
defaultValue: 0,
hideInMore: true,
info: (
<>
Expand Down
1 change: 1 addition & 0 deletions web-console/src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export function dataTypeToIcon(dataType: string): IconName {
return IconNames.SNOWFLAKE;

case 'COMPLEX<QUANTILESDOUBLESSKETCH>':
case 'COMPLEX<APPROXIMATEHISTOGRAM>':
return IconNames.HORIZONTAL_DISTRIBUTION;

case 'COMPLEX<VARIANCE>':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ exports[`LoadDataView matches snapshot batch 1`] = `
>
<img
alt="Ingestion tile for index_parallel:azureStorage"
src="/some/base_url/assets/azurestorage.png"
src="/some/base_url/assets/azureStorage.png"
/>
<p>
Azure Data Lake
Expand Down