-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to move description list item workflow execution name to it's…
… own partial to fix display issue when clearing a workflow execution name. Fixed bug with header not being updated with the current name
- Loading branch information
1 parent
2e6eb1c
commit 47f79f2
Showing
7 changed files
with
27 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
app/views/projects/workflow_executions/_workflow_execution_name.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<% unless @workflow_execution.name.blank? %> | ||
<div class="flex flex-col pb-3"> | ||
<dt class="mb-1 text-slate-500 md:text-lg dark:text-slate-400">Name</dt> | ||
<dd class="text-lg font-semibold text-slate-900 dark:text-white"><%= @workflow_execution.name %></dd> | ||
</div> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
app/views/workflow_executions/_workflow_execution_name.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<% unless @workflow_execution.name.blank? %> | ||
<div class="flex flex-col pb-3"> | ||
<dt class="mb-1 text-slate-500 md:text-lg dark:text-slate-400">Name</dt> | ||
<dd class="text-lg font-semibold text-slate-900 dark:text-white"><%= @workflow_execution.name %></dd> | ||
</div> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters