Skip to content

Commit

Permalink
Show bundle id in submission component
Browse files Browse the repository at this point in the history
  • Loading branch information
kitallis committed Oct 10, 2024
1 parent 3ea795a commit a03219f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<%= render V2::SectionComponent.new(title: "External info", style: :titled, size: :micro) do %>
<div class="flex">
<%= render V2::HorizontalDataSetComponent.new do |component| %>
<% component.with_data_set(title: "Bundle").with_content(submission.conf.integrable.bundle_identifier) %>
<% component.with_data_set(title: "Status").with_content(external_status) %>
<% component.with_data_set(title: "Tester groups").with_content(submission.submission_channel.name.truncate(50)) %>
<% if active? %>
Expand Down
3 changes: 1 addition & 2 deletions app/models/release_platform.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#
# id :uuid not null, primary key
# branching_strategy :string
# config :jsonb
# description :string
# name :string not null
# platform :string
Expand All @@ -29,7 +28,7 @@ class ReleasePlatform < ApplicationRecord
include Displayable

# self.ignored_columns += %w[branching_strategy description release_backmerge_branch release_branch version_current version_seeded_with working_branch vcs_webhook_id status]

self.ignored_columns += %w[config]
NATURAL_ORDER = Arel.sql("CASE WHEN platform = 'android' THEN 1 WHEN platform = 'ios' THEN 2 ELSE 3 END")
DEFAULT_PROD_RELEASE_CONFIG = {
android: {
Expand Down

0 comments on commit a03219f

Please sign in to comment.