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:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- production
|
- production
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- production
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
do-scan:
|
do-scan:
|
||||||
|
|
@ -14,7 +11,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: read
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,8 @@ export default typescriptEslint.config(
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
// your rules
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
"@typescript-eslint/no-require-imports": "off",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
eslintConfigPrettier
|
eslintConfigPrettier
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import { RouterLink } from "vue-router";
|
||||||
<v-app-bar fixed app>
|
<v-app-bar fixed app>
|
||||||
<v-container class="d-flex align-center pa-0">
|
<v-container class="d-flex align-center pa-0">
|
||||||
<div class="d-flex align-center">
|
<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
|
<v-btn
|
||||||
:variant="isActive ? 'elevated' : 'outlined'"
|
:variant="isActive ? 'elevated' : 'outlined'"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
@ -16,7 +16,7 @@ import { RouterLink } from "vue-router";
|
||||||
Home
|
Home
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</RouterLink>
|
</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
|
<v-btn
|
||||||
:variant="isActive ? 'elevated' : 'outlined'"
|
:variant="isActive ? 'elevated' : 'outlined'"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue