From f396649e3de8f5510ed36a4461fbcfa9aa1de3c5 Mon Sep 17 00:00:00 2001 From: hvangeffen Date: Fri, 26 Apr 2024 11:27:36 +0200 Subject: [PATCH] Fix formatting --- src/components/table/TableCellEdit.vue | 6 +++++- src/lib/utils/resolveCSSVariable.ts | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/table/TableCellEdit.vue b/src/components/table/TableCellEdit.vue index c7cdf522..264dc24d 100644 --- a/src/components/table/TableCellEdit.vue +++ b/src/components/table/TableCellEdit.vue @@ -14,7 +14,11 @@ v-model="currentItem.flagEdit" @change="editItem" > - diff --git a/src/lib/utils/resolveCSSVariable.ts b/src/lib/utils/resolveCSSVariable.ts index e1467008..0a2cd764 100644 --- a/src/lib/utils/resolveCSSVariable.ts +++ b/src/lib/utils/resolveCSSVariable.ts @@ -1,8 +1,8 @@ /** * Resolves a CSS variable to its value - * @param {string} cssVariable - The CSS variable to resolve. - * @returns {string} The value of the CSS variable. - */ + * @param {string} cssVariable - The CSS variable to resolve. + * @returns {string} The value of the CSS variable. + */ export function resolveCSSVariable(cssVariable: string): string { const property = cssVariable.replace('var(', '').replace(')', '') return getComputedStyle(document.documentElement).getPropertyValue(property)