33 lines
583 B
JavaScript
33 lines
583 B
JavaScript
|
export default {
|
||
|
props: {
|
||
|
canaryDeploymentFeatureId: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: '',
|
||
|
},
|
||
|
showCanaryDeploymentCallout: {
|
||
|
type: Boolean,
|
||
|
required: false,
|
||
|
default: false,
|
||
|
},
|
||
|
userCalloutsPath: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: '',
|
||
|
},
|
||
|
lockPromotionSvgPath: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: '',
|
||
|
},
|
||
|
helpCanaryDeploymentsPath: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: '',
|
||
|
},
|
||
|
},
|
||
|
metods: {
|
||
|
toggleDeployBoard() {},
|
||
|
},
|
||
|
};
|