Skip to content

Commit 376fc88

Browse files
committed
remove eslint rule: 'vue/require-default-prop'
1 parent 2f8444c commit 376fc88

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const config = {
4444
'vue/no-deprecated-events-api': 'warn',
4545
'vue/no-v-for-template-key': 'off',
4646
'vue/no-v-for-template-key-on-child': 'error',
47+
'vue/require-default-prop': 'off',
4748
'vue/component-name-in-template-casing': ['error', 'PascalCase'],
4849
'prettier/prettier': 'error',
4950
'you-dont-need-lodash-underscore/omit': 'off',

src/plugins/plan/components/PlanView.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,7 @@ export default {
8989
inject: ['openmct', 'domainObject', 'path'],
9090
props: {
9191
timeStrip: {
92-
type: Object,
93-
default() {
94-
return;
95-
}
92+
type: Object
9693
},
9794
renderingEngine: {
9895
type: String,

0 commit comments

Comments
 (0)