Merge branch 'release/10.0' into dev

pull/7769/head
ulferts 5 years ago
commit b76a49c29e
No known key found for this signature in database
GPG Key ID: A205708DE1284017
  1. 4
      app/views/messages/_form.html.erb
  2. 3
      frontend/src/app/modules/fields/display/field-types/wp-spent-time-display-field.module.ts

@ -40,10 +40,10 @@ See docs/COPYRIGHT.rdoc for more details.
</div> </div>
<% unless replying %> <% unless replying %>
<div class="form--field"> <div class="form--field">
<%= f.check_box :sticky, label: t(:label_board_sticky) %> <%= f.check_box :sticky, label: I18n.t('js.label_board_sticky') %>
</div> </div>
<div class="form--field"> <div class="form--field">
<%= f.check_box :locked, label: t(:label_board_locked) %> <%= f.check_box :locked, label: I18n.t('js.label_board_locked') %>
</div> </div>
<% end %> <% end %>
<% if !replying && !@message.new_record? && User.current.allowed_to?(:edit_messages, @project) %> <% if !replying && !@message.new_record? && User.current.allowed_to?(:edit_messages, @project) %>

@ -49,11 +49,12 @@ export class WorkPackageSpentTimeDisplayField extends DurationDisplayField {
link.setAttribute('title', this.text.linkTitle); link.setAttribute('title', this.text.linkTitle);
if (this.resource.project) { if (this.resource.project) {
const wpID = this.resource.id.toString();
this.projectCacheService this.projectCacheService
.require(this.resource.project.idFromLink) .require(this.resource.project.idFromLink)
.then((project:ProjectResource) => { .then((project:ProjectResource) => {
const href = URI(this.PathHelper.projectTimeEntriesPath(project.identifier)) const href = URI(this.PathHelper.projectTimeEntriesPath(project.identifier))
.search({work_package_id: this.resource.id}) .search({work_package_id: wpID})
.toString(); .toString();
link.href = href; link.href = href;

Loading…
Cancel
Save