Skip to content

Commit

Permalink
Disable export functionality in UI
Browse files Browse the repository at this point in the history
Commented out the export menu item and corresponding divider in the WorkflowInstanceList component due to a malfunction with the export feature. This change is temporary until the issue is resolved.
  • Loading branch information
sfmskywalker committed Mar 14, 2024
1 parent a367c9f commit d69e943
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -266,8 +266,9 @@
<MudMenuItem Icon="@Icons.Material.Outlined.ZoomIn" OnClick="@(() => OnViewClicked(context.WorkflowInstanceId))">View</MudMenuItem>
<MudMenuItem Icon="@Icons.Material.Outlined.Delete" OnClick="@(() => OnDeleteClicked(context))">Delete</MudMenuItem>
<MudMenuItem Icon="@Icons.Material.Outlined.Cancel" Disabled="@(context.FinishedAt != null)" OnClick="@(() => OnCancelClicked(context))">Cancel</MudMenuItem>
<MudDivider DividerType="DividerType.FullWidth"></MudDivider>
<!--<MudMenuItem Icon="@Icons.Material.Filled.FileDownload" OnClick="@(() => OnDownloadClicked(context))">Export</MudMenuItem>-->
@* Disabled until we fix an issue with Workflow Instance Exports. *@
@* <MudDivider DividerType="DividerType.FullWidth"></MudDivider> *@
@* <MudMenuItem Icon="@Icons.Material.Filled.FileDownload" OnClick="@(() => OnDownloadClicked(context))">Export</MudMenuItem> *@
</MudMenu>
</MudTd>
</RowTemplate>
Expand Down

0 comments on commit d69e943

Please sign in to comment.