semantics

This commit is contained in:
2026-03-27 21:27:31 +03:00
parent 7c85552132
commit 2ed66bfebc
182 changed files with 21186 additions and 10254 deletions

View File

@@ -196,7 +196,7 @@ export const sidebarStore = writable({
export function toggleSidebar() { /* ... */ }
export function setActiveItem(path) { /* ... */ }
// [/DEF:SidebarStore]
// [/DEF:SidebarStore:Store]
```
### TaskDrawerStore (frontend/src/lib/stores/taskDrawer.js)
@@ -221,7 +221,7 @@ export const taskDrawerStore = writable({
export function openDrawerForTask(taskId) { /* ... */ }
export function closeDrawer() { /* ... */ }
export function updateResourceTask(resourceId, taskId, status) { /* ... */ }
// [/DEF:TaskDrawerStore]
// [/DEF:TaskDrawerStore:Store]
```
### ActivityStore (frontend/src/lib/stores/activity.js)
@@ -238,5 +238,5 @@ export const activityStore = derived(taskDrawerStore, ($drawer) => {
.filter(t => t.status === 'RUNNING').length;
return { activeCount };
});
// [/DEF:ActivityStore]
// [/DEF:ActivityStore:Store]
```