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"); @@ -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; -}