Moving away from Azure Devops #1
2 changed files with 5 additions and 2 deletions
|
|
@ -12,7 +12,8 @@
|
|||
"Bash(npm install:*)",
|
||||
"WebFetch(domain:raw.githubusercontent.com)",
|
||||
"Bash(npm run css:analyze:*)",
|
||||
"Bash(npm run test:run:*)"
|
||||
"Bash(npm run test:run:*)",
|
||||
"Bash(cd:*)"
|
||||
],
|
||||
"deny": [],
|
||||
"ask": []
|
||||
|
|
|
|||
|
|
@ -384,12 +384,14 @@ export class HeaderDrawerRenderer {
|
|||
|
||||
/**
|
||||
* Get visible column keys from DOM (preserves order for multi-resource views)
|
||||
* Uses filterTemplate.buildKeyFromColumn() for consistent key format with events
|
||||
*/
|
||||
private getVisibleColumnKeysFromDOM(): string[] {
|
||||
if (!this.filterTemplate) return [];
|
||||
const columns = document.querySelectorAll('swp-day-column');
|
||||
const columnKeys: string[] = [];
|
||||
columns.forEach(col => {
|
||||
const columnKey = (col as HTMLElement).dataset.columnKey;
|
||||
const columnKey = this.filterTemplate!.buildKeyFromColumn(col as HTMLElement);
|
||||
if (columnKey) columnKeys.push(columnKey);
|
||||
});
|
||||
return columnKeys;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue