Moving away from Azure Devops #1

Merged
Janus007 merged 113 commits from refac into master 2026-02-03 00:04:27 +01:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 58cedb9fad - Show all commits

View file

@ -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": []

View file

@ -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;