tramway-admin 1.12.1 → 1.12.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc2b781b390c05895552767a96ce30a68f9b62aa564186c1c0f1a525db19041a
4
- data.tar.gz: b4e0dff8d0a7740ba13a8d2d7da8307014ef71d5b75f81dfe176fa94a33b31b6
3
+ metadata.gz: 3db7346535275cb664a5debb34dfc9cf7ac206c6d292da898a31623703f04111
4
+ data.tar.gz: 322285c9a93932f8de150de00df4c67f9ccc33369e2e0504ff59aade70a0e6ac
5
5
  SHA512:
6
- metadata.gz: 7259c27359848a2c7a33d2904e96ffdb27d56affffaa6ebffb940843b4cd4d61d8c8e038044780da9026c5b62e9092f8a4721f2f761e586b1e5404cddcdaf2b8
7
- data.tar.gz: 9a73851e7c533abef3c5e658aa173bdac48ae0696b02fadd530765f3b35a6b995333525291010410a6f745d54b6ea530dfa91bfb49c436f22597ccf532e487c8
6
+ metadata.gz: 5271a748e1f97d58523e051b742fbdcbce6c77bb34bae1155f549ce842da7fd5d9d5531af41a0cb22ad4d1f4c7c3eb6bb464767267d7bda1130eb4c5af3efd5a
7
+ data.tar.gz: 5efb580cf4f65be0a452b0d628aff8953dbe26fb12a8d619194e67863c4f1fb095107460776a5d676c229e831aef313ae217ead6dce6b637b48292e35c7ebf9d
@@ -17,10 +17,10 @@
17
17
  - if signed_in?
18
18
  %li.nav-item
19
19
  = link_to Tramway::Auth::Engine.routes.url_helpers.session_path, method: :delete, class: 'nav-link' do
20
- = fa_icon 'sign-out'
20
+ = fa_icon 'sign-out-alt'
21
21
  = t('helpers.links.sign_out')
22
22
  - else
23
23
  %li.nav-item
24
24
  = link_to new_session_path, class: 'nav-link' do
25
- = fa_icon 'sign-in'
25
+ = fa_icon 'sign-in-alt'
26
26
  = t('helpers.links.enter')
@@ -22,6 +22,6 @@
22
22
  - record.model.class.state_machines.keys.each do |state_method|
23
23
  - unless state_method == :state
24
24
  = state_events_buttons record, state_method: state_method, model_param_name: :record, route_method: :current_model_record_path, parameters: { redirect: current_model_records_path(page: params[:page], scope: params[:scope], focus: focus_selector(index)) }
25
- = link_to fa_icon(:pencil), edit_current_model_record_path(record.id), class: 'btn btn-warning btn-xs'
26
- = link_to fa_icon(:remove), current_model_record_path(record.id), method: :delete, class: 'btn btn-xs btn-danger'
25
+ = link_to fa_icon('pencil-alt'), edit_current_model_record_path(record.id), class: 'btn btn-warning btn-xs'
26
+ = link_to fa_icon('trash-alt'), current_model_record_path(record.id), method: :delete, class: 'btn btn-xs btn-danger'
27
27
  = paginate @records, theme: 'twitter-bootstrap-4'
@@ -12,7 +12,7 @@
12
12
  %h2
13
13
  = current_title
14
14
  - edit_path = object_type(object) == :singleton ? edit_current_model_singleton_path : edit_current_model_record_path(object.id)
15
- = link_to fa_icon(:pencil), edit_path, class: 'btn btn-warning btn-xs'
15
+ = link_to fa_icon('pencil-alt'), edit_path, class: 'btn btn-warning btn-xs'
16
16
  - if public_path(object)
17
17
  = link_to fa_icon(:share), public_path(object), class: 'btn btn-primary btn-xs'
18
18
  %hr
@@ -1,5 +1,5 @@
1
1
  module Tramway
2
2
  module Admin
3
- VERSION = '1.12.1'
3
+ VERSION = '1.12.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.1
4
+ version: 1.12.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov