Skip to content

Commit

Permalink
chore: Run biome-check formatting (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
einnhverr authored Dec 16, 2024
1 parent 00bb436 commit b1c9010
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions yaku-ui/qg-service-ui/src/components/VuetifyMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ SPDX-License-Identifier: MIT
</template>

<script setup lang="ts">
import { useRoute } from 'vue-router';
import { ROUTE_NAMES } from '~/router';
import { useRoute } from 'vue-router'
import { ROUTE_NAMES } from '~/router'

/**
* At this component level, the server and namespace (also the environment)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ SPDX-License-Identifier: MIT
</template>

<script setup lang="ts">
import type { SelectItem } from '~/types';
import type { ManualStatus } from '~/types/RunResult';
import type { SelectItem } from '~/types'
import type { ManualStatus } from '~/types/RunResult'

const props = defineProps<{
status?: ManualStatus | string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ const namespaceOptions = computed(() =>
!currentEnv.value || !currentEnv.value.namespaces
? []
: currentEnv.value.namespaces.map((n) => {
return { id: n.id, name: n.name ?? n.id }
}),
return { id: n.id, name: n.name ?? n.id }
}),
)
const userHasNoPermission = computed(
() => route.meta.isErrorView && route.query.type?.includes('no-permission'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
//
// SPDX-License-Identifier: MIT

import VuetifyMapping from "./VuetifyMapping.vue";
import VuetifyResultError from "./VuetifyResultError.vue";
import VuetifyRowSelection from "./VuetifyRowSelection.vue";
import VuetifySelectFile from "./VuetifySelectFile.vue";
import VuetifyMapping from './VuetifyMapping.vue'
import VuetifyResultError from './VuetifyResultError.vue'
import VuetifyRowSelection from './VuetifyRowSelection.vue'
import VuetifySelectFile from './VuetifySelectFile.vue'

export {
VuetifyMapping,
VuetifyResultError,
VuetifyRowSelection,
VuetifySelectFile,
};
}

0 comments on commit b1c9010

Please sign in to comment.