diff options
| author | mo khan <mo@mokhan.ca> | 2025-04-28 15:46:07 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-04-28 15:46:07 -0600 |
| commit | 6e34028f07063a838bb27c6eba98112f2a94aa53 (patch) | |
| tree | 300a3fd1be793c55be1b0848b6145b7466437b43 /public | |
| parent | aa88e3c066a4a8b8f1b27bc528226bd94329945b (diff) | |
feat: don't sort sparkles in memory
Diffstat (limited to 'public')
| -rw-r--r-- | public/application.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/application.js b/public/application.js index 7c27a6b..ee905e0 100644 --- a/public/application.js +++ b/public/application.js @@ -17,7 +17,7 @@ document.addEventListener('DOMContentLoaded', (event) => { return this.sparkles.length == 0 ? "Nothing to see here" : "Recent"; }, recentSparkles: function() { - return this.sparkles.reverse(); + return this.sparkles; }, isDisabled: function() { return this.isSending || !this.isValid(); |
