Remove limit from metric

This commit is contained in:
rijkvanzanten
2021-05-28 18:48:43 -04:00
parent 2ce26c1116
commit 648efd661f
2 changed files with 5 additions and 18 deletions

View File

@@ -65,16 +65,16 @@ export default definePanel({
},
},
{
field: 'limit',
field: 'decimals',
type: 'integer',
name: '$t:limit',
schema: {
default_value: 100,
},
name: '$t:decimals',
meta: {
interface: 'input',
width: 'half',
},
schema: {
default_value: 2,
},
},
{
field: 'sortField',
@@ -139,18 +139,6 @@ export default definePanel({
width: 'half',
},
},
{
field: 'decimals',
type: 'integer',
name: '$t:decimals',
meta: {
interface: 'input',
width: 'half',
},
schema: {
default_value: 2,
},
},
],
minWidth: 16,
minHeight: 6,

View File

@@ -59,7 +59,6 @@ export default defineComponent({
},
filter: props.options.filter,
sort: sort,
limit: props.options.limit ?? 100,
},
});