Skip to content

Commit

Permalink
fix(masterdata): do not show no method error if billing API is down (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
andypf authored Aug 26, 2024
1 parent 70c43ec commit c67383c
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
.col-sm-4.details-label
Name
.col-sm-8.details-value
= @project.name
= @project&.name
.row
.col-sm-4.details-label
Description
.col-sm-8.details-value
=# use active project here because at the moment masterdata api supports max. 255 chars
%span.description
- if @project.description
= @project.description
- else
\-
= @project&.description || '-'

0 comments on commit c67383c

Please sign in to comment.