/** * Renders Rollback or Re deploy button in environments table depending * of the provided property `isLastDeployment` */ const Vue = require('vue'); module.exports = Vue.component('rollback-component', { props: { retryUrl: { type: String, default: '', }, isLastDeployment: { type: Boolean, default: true, }, }, template: ` Re-deploy Rollback `, });