feat: polish alpine live page states
This commit is contained in:
+4
-4
@@ -319,12 +319,12 @@
|
||||
</div>
|
||||
|
||||
<!-- Empty state -->
|
||||
<div class="empty-state" x-show="!loading && totalFiltered === 0">
|
||||
<h3 data-i18n="ops.empty.title">No operations found</h3>
|
||||
<p data-i18n="ops.empty.sub">Try adjusting your search or filters.</p>
|
||||
<div class="empty-state" x-show="!loading && !loadError && totalFiltered === 0">
|
||||
<h3 x-text="operations.length === 0 ? 'No operations yet' : 'No operations found'">No operations found</h3>
|
||||
<p x-text="operations.length === 0 ? 'Create the first operation in this workspace to expose a live MCP tool.' : 'Try adjusting your search or filters.'">Try adjusting your search or filters.</p>
|
||||
</div>
|
||||
|
||||
<div class="empty-state" x-show="!loading && loadError">
|
||||
<div class="empty-state" x-show="!loading && !!loadError">
|
||||
<h3>Backend connection failed</h3>
|
||||
<p x-text="loadError"></p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user