mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
* Add trends, time series, seed data * Remove test data * Replace old view values with helpers * Fix tooltip bugs in D3 chart * Fix tests * Fix smoke test * Add CRUD actions for valuations * Scaffold out inline editing with Turbo * Refactor series logic * Scaffold out basic sync process for accounts * Fix tests
9 lines
290 B
Plaintext
9 lines
290 B
Plaintext
<%# locals: (is_syncing:) %>
|
|
<% if is_syncing %>
|
|
<div class="my-4 px-8 py-4 rounded-lg bg-yellow-500/10 flex items-center justify-between">
|
|
<p class="text-gray-900 text-sm">
|
|
Syncing your account balances. Please reload the page to see updated data.
|
|
</p>
|
|
</div>
|
|
<% end %>
|