diff --git a/js/components/confirmation_popover.js b/js/components/confirmation_popover.js deleted file mode 100644 index f771a516..00000000 --- a/js/components/confirmation_popover.js +++ /dev/null @@ -1,38 +0,0 @@ -export default { - name: 'confirmation-popover', - - props: { - action: String, - btn_text: String, - btn_icon: String, - btn_class: String, - cancel_btn_text: String, - confirm_btn_text: String, - confirm_msg: String, - csrf_token: String, - name: String, - }, - - template: ` - - - - - `, -} diff --git a/templates/components/confirmation_button.html b/templates/components/confirmation_button.html deleted file mode 100644 index dc74ba2c..00000000 --- a/templates/components/confirmation_button.html +++ /dev/null @@ -1,20 +0,0 @@ -{% macro ConfirmationButton( - btn_text, - action, - btn_icon=None, - btn_class=None, - confirm_msg="Are you sure?", - confirm_btn="Confirm", - cancel_btn="Cancel") --%} - - -{%- endmacro %}