Skip to content

Commit

Permalink
Fix action btn after reserve
Browse files Browse the repository at this point in the history
  • Loading branch information
samaradel committed Feb 17, 2025
1 parent dcddd04 commit c235084
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
color="error"
:loading="loadingUnreserveBtn"
:disabled="disableButton"
v-if="reserved"
v-else
@click.stop="removeReserve"
>
Unreserve
Expand Down Expand Up @@ -166,6 +166,7 @@ export default {
disableButton.value = false;
loadingReserveNode.value = false;
emit("updateTable");
reserved.value = true;
}, 20000);
} else {
createCustomToast("Please Login first to continue.", ToastType.danger);
Expand Down

0 comments on commit c235084

Please sign in to comment.