Skip to content

Commit

Permalink
Merge pull request #1646 from UrbanOS-Public/1108
Browse files Browse the repository at this point in the history
Display org title instead of org name on user page
  • Loading branch information
c-m-duncan authored Apr 5, 2023
2 parents fc9cd08 + cd5b277 commit d349ae0
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 @@ -20,7 +20,7 @@ defmodule AndiWeb.EditUserLiveView.EditUserLiveViewTable do
<% else %>
<%= for organization <- @organizations do %>
<tr class="organizations-table__tr">
<td class="organizations-table__cell organizations-table__cell--break"><%= Map.get(organization, :orgName, "") %></td>
<td class="organizations-table__cell organizations-table__cell--break"><%= Map.get(organization, :orgTitle, "") %></td>
<td class="organizations-table__cell organizations-table__cell primary-color-link" style="width: 10%;">
<%= Link.link("Edit", to: "/organizations/#{Map.get(organization, :id)}", class: "btn") %>
<button phx-click="remove_org" phx-value-org-id="<%= organization.id %>" phx-target="<%= @myself %>" class="btn btn--remove-organization">Remove</button>
Expand Down
2 changes: 1 addition & 1 deletion apps/andi/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Andi.MixProject do
def project do
[
app: :andi,
version: "2.6.52",
version: "2.6.53",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
Expand Down

0 comments on commit d349ae0

Please sign in to comment.