fix indentation and remove console log

This commit is contained in:
yogesh-gohil
2023-03-31 17:42:18 +05:30
parent a9f971bf3d
commit ceb05a7dac
3 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,7 @@
border-none
outline-none
cursor-pointer
dark:bg-gray-600/70
dark:bg-gray-600/70
dark:backdrop-blur-xl
dark:shadow-glass
dark:hover:bg-gray-600/80

View File

@ -175,6 +175,7 @@ import { useCompanyStore } from '@/scripts/admin/stores/company'
import { computed } from 'vue'
import draggable from 'vuedraggable'
import Item from './CreateItemRow.vue'
const props = defineProps({
store: {
type: Object,
@ -197,7 +198,9 @@ const props = defineProps({
default: '',
},
})
const companyStore = useCompanyStore()
const defaultCurrency = computed(() => {
if (props.currency) {
return props.currency

View File

@ -19,7 +19,6 @@ const globalStore = useGlobalStore()
const enabled = computed({
get: () => globalStore.isDarkModeOn,
set: (value) => {
console.log(value)
if (value) {
localStorage.theme = 'dark'
document.documentElement.classList.add('dark')