Merge branch 'release/10.0' into dev

pull/7729/head
ulferts 5 years ago
commit 5bf15a7400
No known key found for this signature in database
GPG Key ID: A205708DE1284017
  1. 1
      frontend/src/app/modules/boards/board/board.component.ts
  2. 1
      frontend/src/app/modules/boards/board/board.service.ts
  3. 4
      modules/costs/app/views/cost_types/_list.html.erb
  4. 2
      modules/costs/app/views/cost_types/_list_deleted.html.erb

@ -106,7 +106,6 @@ export class BoardComponent implements OnInit, OnDestroy {
.save(board)
.then(board => {
this.inFlight = false;
board.sortWidgets();
return board;
})
.catch((error) => {

@ -74,6 +74,7 @@ export class BoardService {
this.reorderWidgets(board);
return this.boardDm.save(board)
.then(board => {
board.sortWidgets();
this.boardCache.update(board);
return board;
});

@ -96,9 +96,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
method: :delete,
html: { id: "delete_cost_type_#{cost_type.id}",
class: 'delete_cost_type',
title: t(:button_delete) } do |f| %>
title: t(:button_lock) } do |f| %>
<button type="submit"
class="button submit_cost_type">
class="button--link submit_cost_type">
<%= icon_wrapper('icon icon-locked', I18n.t(:button_lock)) %>
</button>
<% end %>

@ -74,7 +74,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
html: { id: "restore_cost_type_#{cost_type.id}",
class: 'restore_cost_type' } do |f| %>
<button type="submit"
class="button submit_cost_type">
class="button--link submit_cost_type">
<%= icon_wrapper('icon icon-unlocked', I18n.t(:button_unlock)) %>
</button>
<% end %>

Loading…
Cancel
Save