Merged DIO-7 (PR #1) into production
This commit is contained in:
parent
ab9ee3fce4
commit
e7e7278577
3 changed files with 4 additions and 7 deletions
4
.github/workflows/production-ci.yml
vendored
4
.github/workflows/production-ci.yml
vendored
|
|
@ -4,9 +4,6 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- production
|
||||
pull_request:
|
||||
branches:
|
||||
- production
|
||||
|
||||
jobs:
|
||||
do-scan:
|
||||
|
|
@ -14,7 +11,6 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@ export default typescriptEslint.config(
|
|||
},
|
||||
},
|
||||
rules: {
|
||||
// your rules
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-require-imports": "off",
|
||||
},
|
||||
},
|
||||
eslintConfigPrettier
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import { RouterLink } from "vue-router";
|
|||
<v-app-bar fixed app>
|
||||
<v-container class="d-flex align-center pa-0">
|
||||
<div class="d-flex align-center">
|
||||
<RouterLink class="mx-2 text-decoration-none" to="/" data-role="homeNavigation" v-slot="{ isActive }">
|
||||
<RouterLink v-slot="{ isActive }" class="mx-2 text-decoration-none" to="/" data-role="homeNavigation">
|
||||
<v-btn
|
||||
:variant="isActive ? 'elevated' : 'outlined'"
|
||||
color="primary"
|
||||
|
|
@ -16,7 +16,7 @@ import { RouterLink } from "vue-router";
|
|||
Home
|
||||
</v-btn>
|
||||
</RouterLink>
|
||||
<RouterLink class="mx-2 text-decoration-none" to="/about" data-role="aboutNavigation" v-slot="{ isActive }">
|
||||
<RouterLink v-slot="{ isActive }" class="mx-2 text-decoration-none" to="/about" data-role="aboutNavigation">
|
||||
<v-btn
|
||||
:variant="isActive ? 'elevated' : 'outlined'"
|
||||
color="primary"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue