We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a82e14 commit bb94589Copy full SHA for bb94589
plugins/main/public/components/common/hocs/with-index-pattern.tsx
@@ -243,7 +243,6 @@ const fieldMappers = {
243
integer: ({ type }) =>
244
type === 'number' ? { id: 'number', params: { pattern: '0' } } : undefined,
245
percent: ({ type }) => {
246
- console.log({ type });
247
return type === 'number'
248
? { id: 'percent', params: { pattern: '0,0.[00]%' } }
249
: undefined;
@@ -256,7 +255,6 @@ export function mapFieldsFormat(expectedFields: {
256
255
return {
257
mapSavedObjectAttributesCreation: ({ fields }) => {
258
const fieldsToMap = Object.keys(expectedFields);
259
- console.log({ fieldsToMap });
260
const mappedFields = fields
261
?.filter(({ name }) => fieldsToMap.includes(name))
262
.map(field => {
0 commit comments