semantics
This commit is contained in:
@@ -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]
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user