Working on time tracker
This commit is contained in:
parent
75bc40bcce
commit
ad33481c5e
1 changed files with 5 additions and 1 deletions
|
|
@ -120,7 +120,7 @@
|
|||
</span>
|
||||
|
||||
<center style="padding-top: 30px">
|
||||
<span data-bind="visible: ! selectedTask().isNew">
|
||||
<span data-bind="visible: selectedTask().isCreated">
|
||||
{!! DropdownButton::normal(trans('texts.archive'))
|
||||
->withAttributes([
|
||||
'class' => 'archive-dropdown',
|
||||
|
|
@ -423,6 +423,10 @@
|
|||
return ! self.public_id();
|
||||
});
|
||||
|
||||
self.isCreated = ko.computed(function() {
|
||||
return self.public_id();
|
||||
});
|
||||
|
||||
self.showActionButton = function() {
|
||||
self.actionButtonVisible(true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue