mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-24 15:54:00 +08:00
Fix displaying of assign button on inventory item card [SCI-9559] (#6483)
This commit is contained in:
parent
54fd174a24
commit
54daf91701
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@
|
||||||
count: assignedModules ?
|
count: assignedModules ?
|
||||||
assignedModules.total_assigned_size : 0
|
assignedModules.total_assigned_size : 0
|
||||||
}) }}
|
}) }}
|
||||||
<a v-if="actions?.assign_repository_row && !defaultColumns?.archived"
|
<a v-if="!defaultColumns?.archived && (inRepository || actions?.assign_repository_row)"
|
||||||
class="btn-text-link font-normal" :class="{
|
class="btn-text-link font-normal" :class="{
|
||||||
'assign-inventory-button': actions?.assign_repository_row,
|
'assign-inventory-button': actions?.assign_repository_row,
|
||||||
'disabled': actions?.assign_repository_row && actions.assign_repository_row.disabled
|
'disabled': actions?.assign_repository_row && actions.assign_repository_row.disabled
|
||||||
|
|
Loading…
Reference in a new issue