Open links in new window

This commit is contained in:
2022-02-19 22:53:39 -05:00
parent 1c431d14dc
commit 3468b5f236
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
<% @customer.qbo_estimates.each do |estimate| %>
<div class="row">
<b><%= link_to "##{estimate.doc_number}", estimate_path(estimate) %> </b>
<b><%= link_to "##{estimate.doc_number}", estimate_path(estimate), target: :_blank %> </b>
</div>
<% end %>

View File

@@ -2,7 +2,7 @@
<% @customer.qbo_invoices.each do |invoice| %>
<div class="row">
<b><%= link_to "##{invoice.doc_number}", invoice_path(invoice) %> </b>
<b><%= link_to "##{invoice.doc_number}", invoice_path(invoice), target: :_blank %> </b>
</div>
<% end %>