generated from coulomb/repo-seed
fix(WP-0017/E3): Layer 3 error fixes — controllers and views
Fix compilation errors across 6 controllers and 29 views: import cleanup, ResponseException pattern for API auth, type fixes, unused import removal. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
module Web.View.HubRoutingRules.Show where
|
||||
|
||||
import Web.Types
|
||||
import Generated.Types
|
||||
import IHP.Prelude
|
||||
import IHP.ViewPrelude
|
||||
import Web.View.Prelude
|
||||
import Web.Routes ()
|
||||
import Web.View.HubRoutingRules.Index (statusBadge)
|
||||
|
||||
@@ -35,11 +32,11 @@ instance View ShowView where
|
||||
<dl class="grid grid-cols-2 gap-4 text-sm">
|
||||
<div>
|
||||
<dt class="text-gray-500">Match Category</dt>
|
||||
<dd class="font-medium">{maybe "any" id rule.matchCategory}</dd>
|
||||
<dd class="font-medium">{fromMaybe "any" rule.matchCategory}</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt class="text-gray-500">Match Widget Type</dt>
|
||||
<dd class="font-medium">{maybe "any" id rule.matchWidgetType}</dd>
|
||||
<dd class="font-medium">{fromMaybe "any" rule.matchWidgetType}</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt class="text-gray-500">Priority</dt>
|
||||
|
||||
Reference in New Issue
Block a user