Make share button independent of task status flow or archived state [SCI-8981]

This commit is contained in:
sboursen-scinote 2023-08-04 14:37:32 +02:00
parent b2b4c30ee2
commit dc27620d00
2 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@
},
disabled: {
type: Boolean,
defaul: true
default: false
}
},
data() {

View file

@ -50,9 +50,9 @@
<% if current_team.shareable_links_enabled? %>
<div class="share-task-container" data-behaviour="vue">
<share-task-container
<%= 'shared' if @my_module.shared? %>
shareable-link-url="<%= my_module_shareable_link_path(@my_module) %>"
<%= 'disabled' if !can_manage_my_module?(current_user, @my_module) %> />
:shared="<%= @my_module.shared? %>"
:disabled="<%= !can_share_my_module?(@my_module) %>" />
</div>
<%= javascript_include_tag 'vue_share_task_container' %>