Compare commits

..

No commits in common. "0c49035f280224ae773420001a83caa9625b22e7" and "fc90b2af93ee6507e1fcf02406e0d2277000c6a3" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

@ -23,11 +23,10 @@
</tr>
</thead>
<tbody>
{{ $baseURL := .BaseURL }}
{{range .Messages}}
<tr data-controller="inbox-entry"
data-action="click->outbox-entry#onClick"
data-inbox-entry-link="{{ $baseURL }}/sms/{{ .ID }}">
data-inbox-entry-link="{{ .BaseURL }}/sms/{{ .ID }}">
<td class="sms-from">
<span class="is-size-7">{{ .From }}</span>
</td>
@ -39,7 +38,7 @@
</td>
<td class="sms-actions">
<div class="buttons is-right">
<a href="{{ $baseURL }}/sms/{{ .ID }}" class="button is-small is-link">👁️ See</a>
<a href="{{ .BaseURL }}/sms/{{ .ID }}" class="button is-small is-link">👁️ See</a>
</div>
</td>
</tr>