Skip to content

Commit

Permalink
Merge pull request #133 from dinukadesilva/gh-131-enable-delete-confi…
Browse files Browse the repository at this point in the history
…rmations

gh-131: Refactoring
  • Loading branch information
isururanawaka authored Sep 2, 2021
2 parents 3b29077 + fa5d066 commit 7b13d07
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airavata-custos-portal",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"main": "src/lib/index.js",
"scripts": {
Expand Down
14 changes: 10 additions & 4 deletions src/lib/components/button/button-delete-after-confirmation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,21 @@
</template>

<script>
import ButtonOverlay from "@/lib/components/overlay/button-overlay";
import ButtonOverlay from "../overlay/button-overlay";
export default {
name: "button-delete-after-confirmation",
components: {ButtonOverlay},
props: {
variant: {},
size: {},
disabled: {},
variant: {
default: "default"
},
size: {
default: ""
},
disabled: {
default: false
},
title: {}
},
data() {
Expand Down

0 comments on commit 7b13d07

Please sign in to comment.