From 12afd30769f69d06f6a95bd3a81b6393553c4f06 Mon Sep 17 00:00:00 2001 From: Art051 <91856576+Art051@users.noreply.github.com> Date: Sun, 13 Aug 2023 00:16:01 +0100 Subject: [PATCH] Removed accidental import of CLabel instead of other c-components previously. --- src/tools/chmod-calculator/chmod-calculator.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tools/chmod-calculator/chmod-calculator.vue b/src/tools/chmod-calculator/chmod-calculator.vue index af73d8b8..50dd6ed8 100644 --- a/src/tools/chmod-calculator/chmod-calculator.vue +++ b/src/tools/chmod-calculator/chmod-calculator.vue @@ -10,7 +10,6 @@ import { } from './chmod-calculator.service'; import type { Group, Scope } from './chmod-calculator.types'; -import CLabel from '@/ui/c-label/c-label.vue'; const themeVars = useThemeVars(); @@ -71,12 +70,11 @@ const computedOctal = computed(() => symbolicToOctal(symbolicInput.value));
For permission strings of length 10:
The first character represents the file type: "-" for a regular file, "d" for a directory, "l" for a symbolic link.