File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -193,6 +193,10 @@ This bug was introduced in version `v2.12.3-pre` on May 29th. If you're tracking
193
193
194
194
### Changed
195
195
196
+ - Optimize run claim query performance with per-workflow limiting strategy
197
+ [ #3245 ] ( https://github.com/OpenFn/lightning/pull/3245 )
198
+ - Add configurable per-workflow claim limit (default: 50) via
199
+ ` PER_WORKFLOW_CLAIM_LIMIT ` environment variable
196
200
- Update Elixir to 1.18.3 [ #2748 ] ( https://github.com/OpenFn/lightning/pull/2748 )
197
201
- Standardized table components across the application
198
202
[ #2905 ] ( https://github.com/OpenFn/lightning/issues/2905 )
Original file line number Diff line number Diff line change @@ -113,13 +113,14 @@ defmodule LightningWeb.DashboardLive.Components do
113
113
class = "hover:bg-gray-100 transition-colors duration-200 "
114
114
onclick = { JS . navigate ( ~p" /projects/#{ project . id } /w" ) }
115
115
>
116
+ <% dbg ( project ) %>
116
117
< . td >
117
- { project . name }
118
118
< . icon
119
119
:if = { project . has_ai_chat }
120
120
name = "hero-sparkles "
121
121
class = "size-4 "
122
122
/>
123
+ { project . name }
123
124
</ . td >
124
125
< . td class = "break-words max-w-[25rem] " >
125
126
{ String . capitalize ( to_string ( project . role ) ) }
Original file line number Diff line number Diff line change @@ -323,8 +323,8 @@ defmodule LightningWeb.WorkflowLive.DashboardComponents do
323
323
class = "flex-shrink truncate text-gray-900 font-medium workflow-name "
324
324
style = "max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; "
325
325
>
326
- { @ workflow . name }
327
326
< . icon :if = { @ workflow . has_ai_chat } name = "hero-sparkles " class = "size-4 " />
327
+ { @ workflow . name }
328
328
</ span >
329
329
</ div >
330
330
<%= if @ trigger_enabled do %>
You can’t perform that action at this time.
0 commit comments