bullet_train 1.19.0 → 1.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f9f125206ee193a77eb9061af07ac76495ef5dd4bfc58aead9e3a50caf2a7c6
4
- data.tar.gz: d08447ca589c165727fa43a53e13d1ef9e2cc2b1a1518b613d5a04107f619d62
3
+ metadata.gz: '06129b8c8df0c811543bfd4e835ea0fe682650252b2cfcc7b022b6197a00757b'
4
+ data.tar.gz: 7d1f4b16768e4c9237b6b0bb504555f2b332d26dc8d3ba5d4bf91a53ee15757e
5
5
  SHA512:
6
- metadata.gz: f2155be565be0566b0b5919a59a65ff8db0be4516489be612eb3a002545ee8d09c2bf498f975978e8b737a8344f40a7e5f4d23153612631faea3ce4075785472
7
- data.tar.gz: 4ca2715224b6a31f5aac3b24bcbe966a166b0ad55c23f2e16bb79833e8661a922473f85a8541dfd6bf1afb1d988ec24b8340e233a15cde7f69e3fc0e73587d09
6
+ metadata.gz: a5abcc0e72948889f2c87f514e2b3199529d6857f34ef9970454097c7e102d4a49940304f03a51d6d898140fc862958f08a753c4f31d506b3f486deeda94b5bf
7
+ data.tar.gz: 4940c1815521e9c4eca289625e38d6215c13483ca5c8d730b50a672f335f6086be4a2ab40937287f3a4e84e38fb8cab05d04e3ad6f5f321b975472856d7dc70d
@@ -26,11 +26,16 @@ module Account::TeamsHelper
26
26
 
27
27
  def photo_for(object)
28
28
  background_color = Colorizer.colorize_similarly((object.name.to_s + object.created_at.to_s).to_s, 0.5, 0.6).delete("#")
29
+ avatar_name = if object.name.present?
30
+ "#{object.name.first}#{object.name.split.one? ? "" : object.name.split.first(2).last.first}"
31
+ else
32
+ "??"
33
+ end
29
34
  "https://ui-avatars.com/api/?" + {
30
35
  color: "ffffff",
31
36
  background: background_color,
32
37
  bold: true,
33
- name: "#{object.name.first}#{object.name.split.one? ? "" : object.name.split.first(2).last.first}",
38
+ name: avatar_name,
34
39
  size: 200,
35
40
  }.to_param
36
41
  end
@@ -1,4 +1,4 @@
1
- <%= form_with(model: [:account, (@team unless invitation.persisted?), invitation], class: 'form', local: true) do |form| %>
1
+ <%= form_with(model: [:account, (@team unless invitation.persisted?), invitation], class: 'form') do |form| %>
2
2
  <%= render "shared/limits/form", form: form, model: invitation.membership, cancel_path: @cancel_path || [:account, invitation] do %>
3
3
  <%= render 'account/shared/forms/errors', form: form %>
4
4
 
@@ -1,4 +1,4 @@
1
- <%= form_with(model: [:account, (@team unless membership.persisted?), membership], class: 'form', local: true) do |form| %>
1
+ <%= form_with(model: [:account, (@team unless membership.persisted?), membership], class: 'form') do |form| %>
2
2
  <%= render 'account/shared/forms/errors', form: form %>
3
3
 
4
4
 
@@ -4,7 +4,7 @@
4
4
  <% box.title @title %>
5
5
  <% box.body do %>
6
6
  <% within_fields_namespace(:self) do %>
7
- <%= form_with(model: @account_onboarding_invitation_list, class: 'form', local: true) do |f| %>
7
+ <%= form_with(model: @account_onboarding_invitation_list, class: 'form') do |f| %>
8
8
  <% f.object.errors.each do |error| %>
9
9
  <%= render 'account/shared/forms/errors', form: f, attributes: [error.attribute], resource: @account_onboarding_invitation_list %>
10
10
  <% end %>
@@ -1,4 +1,4 @@
1
- <%= form_with model: [:account, team], local: true, class: 'form' do |form| %>
1
+ <%= form_with model: [:account, team], class: 'form' do |form| %>
2
2
  <%= render 'account/shared/forms/errors', form: form %>
3
3
 
4
4
  <% with_field_settings form: form do %>
@@ -9,7 +9,7 @@ end
9
9
  <%= render 'account/shared/workflow/box' do |box| %>
10
10
  <% box.title @title %>
11
11
  <% box.body do %>
12
- <%= form_with model: @team, url: [:account, @team], local: true, class: 'form' do |form| %>
12
+ <%= form_with model: @team, url: [:account, @team], class: 'form' do |form| %>
13
13
  <%= render 'account/shared/notices' %>
14
14
  <%= render 'account/shared/forms/errors', form: form %>
15
15
 
@@ -107,7 +107,7 @@ The first of these two forms is actually not shared between `new.html.erb` and `
107
107
  <% if @entry.entryable_type %>
108
108
  <%= render 'form', entry: @entry %>
109
109
  <% else %>
110
- <%= form_with model: @entry, url: [:new, :account, @team, :entry], method: :get, local: true, class: 'form' do |form| %>
110
+ <%= form_with model: @entry, url: [:new, :account, @team, :entry], method: :get, class: 'form' do |form| %>
111
111
  <%= render 'account/shared/forms/errors', form: form %>
112
112
  <% with_field_settings form: form do %>
113
113
  <%= render 'shared/fields/buttons', method: :entryable_type, html_options: {autofocus: true} %>
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.19.0"
2
+ VERSION = "1.19.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-12 00:00:00.000000000 Z
10
+ date: 2025-03-19 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: standard