diff --git a/os-checks/components/FileTree2.vue b/os-checks/components/FileTree2.vue index 0c7dfb0..4e8121a 100644 --- a/os-checks/components/FileTree2.vue +++ b/os-checks/components/FileTree2.vue @@ -84,6 +84,9 @@ const heightCodePanel = computed(() => { const adjust = displayFilters.value ? 100 : 0; return `${height * 0.85 - adjust}px`; }); + +const lockURL = defineModel("lockURL", { default: false }); +const lockURLIcon = computed(() => lockURL.value ? "pi pi-lock" : "pi pi-lock-open"); @@ -100,9 +103,13 @@ const heightCodePanel = computed(() => { displayFilters = !displayFilters" /> + + lockURL = !lockURL" /> + - Total Count: + Total Count: {{ count }} diff --git a/os-checks/pages/file-tree.vue b/os-checks/pages/file-tree.vue index f008f15..3c77eaf 100644 --- a/os-checks/pages/file-tree.vue +++ b/os-checks/pages/file-tree.vue @@ -12,43 +12,37 @@ User: - + Repo: - + - + - - + + - - - - - - - - + + - + @@ -244,22 +347,4 @@ function getBasic(path: string) { .select { padding-right: 10px; } - -.resolved-table { - --p-datatable-header-cell-color: var(--p-button-primary-background); -} - -.sources { - color: var(--p-orange-400); -} - -.sources-table { - --p-datatable-header-cell-color: var(--p-orange-400); -} - -.drop-down-options { - margin-right: 8px; - width: 40px; - justify-content: right; -}